[주의] 개인 공부를 위해 쓴 글이기 때문에 주관적인 내용은 물론, 쓰여진 정보가 틀린 것일 수도 있습니다! 피드백 부탁드립니다. (- -)(_ _) 꾸벅 https://dev.to/koladev/8-must-know-sorting-algorithms-5ja 8 must-know sorting algorithms In this post, I am going to show you common sorting algorithms and provide their implementation in py... dev.to 더 자세한 시간복잡도 순서 1. 버블정렬 (Bubble sort) 순서가 잘못된 경우 항목을 교환하여 작동하는 가장 원시적 형태의 알고리즘. 어떠한 경우든 모든 항목을 검사하기 때문에 시간복잡도는 ..