일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
- big data
- 빅데이터
- 아마존
- java
- rhcsa
- storage
- 도커
- Data Structure
- 레드햇
- linux
- Amazon
- algorithm
- recursive
- 자료구조
- 리눅스
- docker
- Spring
- data
- sort
- AWS
- hadoop
- 재귀
- 자바
- 알고리즘
- 스토리지
- 설치
- redhat
- 스프링
- 하둡
- Redshift
- Today
- Total
목록Programming/Code (14)
Developer MJ
주어진 집합의 모든 부분집합 = 멱집합 public class PowerSet { private static String[] S = { "a", "b", "c", "d", "e", "f" }; private static int n = S.length; private static boolean[] include = new boolean[n]; private static int level; public static void main(String[] args) { // TODO Auto-generated method stub level = 0; powerset(level); } public static void powerset(int level) { if (level == n) { for (int i = 0;..
리눅스 서버에서 다른 리눅스 서버로 파일 전송 Transfer File Linux to Another Linux with JSch Libarary JSch jSch = new JSch(); Session session = null; Channel channel = null; ChannelSftp channelSftp = null; try { java.util.Properties config = new java.util.Properties(); config.put("StrictHostKeyChecking", "no"); session = jSch.getSession("ec2-user", "REMOTE SERVER HOST", ); jSch.addIdentity("/home/ec2-user/.ssh/id_r..