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
- 악보
- 오라클 아키텍처
- 개발자
- SQL 처리
- oracle
- 장범준
- 말 더듬
- 아이유
- 오라클
- DBMS 구성요소
- 천공의 시간
- 인덱스
- DBMS
- I'm fine thank you
- 신입
- 레이디스코드
- 6학년 8반 1분단
- 핑거스타일
- IT
- 데이터베이스
- nginx
- Inside Of Me
- 니가 참 좋아
- index
- 기타
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 | import java.util.ListIterator; import java.util.Stack; // 탑 public class Top { public static int[] solution(int[] heights) { int[] answer = new int[heights.length]; Stack<Integer> stack = new Stack<>(); for (int i = 0; i < heights.length; i++)// 송신 탑 높이를 Stack에 Push stack.push(heights[i]); ListIterator<Integer> it; // Stack의 원소 출력용 int element, top, index; // element: 적절한 수신 탑, // top: 현재 스택 젤 맨 위의 값, // index: element 조절 값 // 송신 탑의 수신을 받을 수 있는 수신 탑 검색 for (int i = stack.size()-1; !stack.isEmpty(); i--) { // i: 현재 송신 탑 index = 0; top = stack.pop(); it = stack.listIterator(stack.size()); // top을 제외한 배열을 위해 초기화 while (it.hasPrevious()) { // Stack 원소의 역방향으로 출력 element = it.previous(); if (top < element) { // 송신 탑보다 수신 탑의 높이가 크면 answer[i] = i-index; break; } index++; } if (answer[i] != 0) // 적절한 수신 탑 크기를 찾았으면 continue; } return answer; } } | cs |
https://programmers.co.kr/learn/courses/30/lessons/42588
'공대인 > Programmers' 카테고리의 다른 글
[Java] 프로그래머스 스택/큐, 주식가격 (0) | 2019.12.03 |
---|---|
[Java] 프로그래머스 스택/큐, 쇠막대기 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 기능개발 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 다리를 지나는 트럭 (0) | 2019.12.03 |
[Java] 프로그래머스 스택/큐, 프린터 (0) | 2019.12.03 |
Comments