Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 장범준
- db
- 봄 사랑 벚꽃 말고
- IT
- 오라클
- SQL 처리
- 개발자
- 슬픔의 후에
- 러블리즈
- 데이터베이스
- 말 더듬
- DBMS
- index
- 니가 참 좋아
- 아이유
- 악보
- 오라클 아키텍처
- I'm fine thank you
- Inside Of Me
- 6학년 8반 1분단
- oracle
- 핑거스타일
- 기타
- 천공의 시간
- nginx
- 신입
- 스위트라떼
- DBMS 구성요소
- 레이디스코드
- 인덱스
Archives
취미로 음악을 하는 개발자
[Java] 프로그래머스 스택/큐, 주식가격 본문
728x90
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 31 32 33 34 35 36 37 38 | import java.util.Iterator; import java.util.LinkedList; import java.util.Queue; // 주식 가격 public class StockPrice { public static int[] solution(int[] prices) { Queue<Integer> q = new LinkedList<>(); // prices Iterator<Integer> it; // 비교 원소들 int[] answer = new int[prices.length]; // 가격이 떨어지지 않은 기간 for (int i : prices) q.offer(i); int price, count; // price: 현재 주식 가격, count: 얼마나 떨어지지 않았는가 for (int i = 0; i < prices.length; i++) { price = q.poll(); it = q.iterator(); count = 0; while (it.hasNext()) { count++; if (price > it.next()) { // 현재 주식 가격이 해당 시간에 떨어진다면 answer[i] = count; break; } } if (i == prices.length-1) // 마지막 시점은 예측 불가 answer[i] = 0; else if (answer[i] == 0) // 끝까지 가격이 떨어지지 않았을 때 answer[i] = count; } return answer; } public static void main(String[] args) { System.out.println(solution(new int[] {1,2,3,2,3})); } } | cs |
https://programmers.co.kr/learn/courses/30/lessons/42584
'공대인 > Programmers' 카테고리의 다른 글
[Java] 프로그래머스 정렬, H-Index (1) | 2019.12.03 |
---|---|
[Java] 프로그래머스 정렬, K번째 수 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 쇠막대기 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 기능개발 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 다리를 지나는 트럭 (0) | 2019.12.03 |
Comments