[LeetCode] Sort an Array (버블, 삽입, 선택, 퀵, 병합, 힙 정렬)
·
코딩테스트
leetcode.com/explore/learn/card/recursion-ii/470/divide-and-conquer/2944/ Explore - LeetCode LeetCode Explore is the best place for everyone to start practicing and learning on LeetCode. No matter if you are a beginner or a master, there are always new topics waiting for you to explore. leetcode.com 1. 버블 정렬 Bubble Sort i번째 와 i+1번째 요소를 비교하여 배열 순차탐색 조건에 맞는 요소를 가장 뒤로 밀어내는 개념 (버블처럼 해당 수를 위로 보냄) 시간복..