Skip to content

Commit

Permalink
Update sort algorithms' time complexity notation
Browse files Browse the repository at this point in the history
  • Loading branch information
minuk8932 committed Jun 9, 2021
1 parent f9e1dc8 commit 1b857ef
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added Algorithm/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion Algorithm/HeapSort.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

| ํ‰๊ท  | ์ตœ์„  | ์ตœ์•… |
| :------: | :------: | :------: |
| O(nlogn) | O(nlogn) | O(nlogn) |
| ฮ˜(nlogn) | ฮฉ(nlogn) | O(nlogn) |



Expand Down
2 changes: 1 addition & 1 deletion Algorithm/MergeSort.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

| ํ‰๊ท  | ์ตœ์„  | ์ตœ์•… |
| :------: | :------: | :------: |
| O(nlogn) | O(nlogn) | O(nlogn) |
| ฮ˜(nlogn) | ฮฉ(nlogn) | O(nlogn) |

์š”์†Œ๋ฅผ ์ชผ๊ฐ  ํ›„, ๋‹ค์‹œ ํ•ฉ๋ณ‘์‹œํ‚ค๋ฉด์„œ ์ •๋ ฌํ•ด๋‚˜๊ฐ€๋Š” ๋ฐฉ์‹์œผ๋กœ, ์ชผ๊ฐœ๋Š” ๋ฐฉ์‹์€ ํ€ต์ •๋ ฌ๊ณผ ์œ ์‚ฌ

Expand Down
2 changes: 1 addition & 1 deletion Algorithm/QuickSort.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

---

ํ€ต์†ŒํŠธ๋Š” ์ตœ์•…์˜ ๊ฒฝ์šฐ O(n^2), ํ‰๊ท ์ ์œผ๋กœ O(nlogn)์„ ๊ฐ€์ง
ํ€ต์†ŒํŠธ๋Š” ์ตœ์•…์˜ ๊ฒฝ์šฐ O(n^2), ํ‰๊ท ์ ์œผ๋กœ ฮ˜(nlogn)์„ ๊ฐ€์ง



Expand Down

0 comments on commit 1b857ef

Please sign in to comment.