일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 악보
- Inside Of Me
- DBMS
- 핑거스타일
- 개발자
- 오라클
- 슬픔의 후에
- db
- 러블리즈
- 레이디스코드
- IT
- 니가 참 좋아
- I'm fine thank you
- 봄 사랑 벚꽃 말고
- 6학년 8반 1분단
- 기타
- 아이유
- SQL 처리
- 신입
- 스위트라떼
- index
- oracle
- 데이터베이스
- 천공의 시간
- 장범준
- nginx
- 말 더듬
- 오라클 아키텍처
- DBMS 구성요소
- 인덱스
목록공대인/Programmers (8)
취미로 음악을 하는 개발자
12345678910111213141516171819202122232425262728293031323334353637383940import java.util.Arrays;import java.util.Stack; // H-Index, 문제가 이상한데 결국 인용된 횟수의 최대값을 구해야함public class H_Index { public static int solution(int[] citations) { Arrays.sort(citations); // 처리하기 편하게 정렬 Stack stack = new Stack(); // H
12345678910111213141516171819202122232425262728293031import java.util.Arrays; // K번째 수public class K { public static int[] solution(int[] array, int[][] commands) { int[] answer = new int[commands.length]; // 결과 개수 int [] index; // 답을 찾을 배열 int first, last, target; // first부터 last까지 있는 원소 중 target번째 int arr = 0, idx = 0; // arr: answer 배열의 인덱스, idx: for (int i = 0; i
1234567891011121314151617181920212223242526272829303132333435363738import java.util.Iterator;import java.util.LinkedList;import java.util.Queue; // 주식 가격public class StockPrice { public static int[] solution(int[] prices) { Queue q = new LinkedList(); // prices Iterator it; // 비교 원소들 int[] answer = new int[prices.length]; // 가격이 떨어지지 않은 기간 for (int i : prices) q.offer(i); int price, count; // pr..
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879import java.util.Stack; // 쇠막대기public class IronRod { public static int solution(String arrangement) { arrangement = arrangement.replace("()", "1"); // 레이저 처리 int answer = 0; // 쇠막대기 총 개수 char curr; // 배치 Stack stack = new Stack(); for (int i = 0; i
123456789101112131415161718192021222324252627282930313233343536import java.util.LinkedList;import java.util.Queue; // 기능개발public class FuncDev { public static int[] solution(int[] progresses, int[] speeds) { int[] pro = progresses; // 복사본 Queue result= new LinkedList(); // 배포 수 저장 int index = 0, count = 0; // index: 배포할 수 있는 기준, count: 한 번에 배포되는 수 while(index
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748import java.util.ArrayList;import java.util.Iterator;import java.util.LinkedList;import java.util.Queue; // 다리를 지나는 트럭public class Truck { public static int solution(int bridge_length, int weight, int[] truck_weights) { Queue bridge = new LinkedList(); // 다리를 지나는 트럭 Queue wait = new LinkedList(); // 대기 트럭 Arra..