반응형 Leetcode11 Leetcode <Heap> 264. Ugly Number II 38.9% Medium 스터디 문제2번 Heap 정답률 38.9% https://blog.naver.com/zzang9ha/221771852840 Do it! 자료구조와 함께 배우는 알고리즘 입문 - 자바 6. 정렬 : 힙 정렬(Heap Sort) *** 위 교재로 공부한 내용입니다. ***힙이란? 힙 정렬(Heap Sort)는 힙을 사용하여 정렬하는 알고리즘... blog.naver.com public class Solution { public int nthUglyNumber(int n) { int result = 1; int array[] = new int[n+1]; int m2 = 0, m3 = 0, m5 = 0; array[0] = 1; for(int i=1; i 2020. 4. 3. Leetcode 96. Unique Binary Search Trees 50.1% Medium 진짜 재수없는 문제 정답률 50.1% Medium 스터디 Tree 문제5번 백준 34단계정도 http://www.goodtecher.com/leetcode-144-binary-tree-preorder-traversal/ class Solution { public int numTrees(int n) { int[] ans = new int[n+1]; ans[0] = ans[1] = 1; for(int i=2;i 2020. 4. 3. Leetcode 144. Binary Tree Preorder Traversal 54.3% Medium 스터디 알고리즘 문제1 Stack 정답률 54.3% Medium 백준 단계에서 34단계 .. 잘 이해해 보자.. http://www.goodtecher.com/leetcode-144-binary-tree-preorder-traversal/ LeetCode 144. Binary Tree Preorder Traversal - GoodTecher Description https://leetcode.com/problems/binary-tree-preorder-traversal/description/ Given a binary tree, return the preorder traversal of its nodes’ values. For example: Given binary tree {1,#,2,3}, 1 \ 2.. 2020. 4. 3. 이전 1 2 3 다음 반응형