Skip to content

Commit

Permalink
Modify Binary search's time complexity
Browse files Browse the repository at this point in the history
O(nlogn) -> O(logN)

์ด๋ถ„ํƒ์ƒ‰์˜ time complexity๊ฐ€ ์ž˜๋ชป์ ํ˜€์žˆ์–ด์„œ ์ˆ˜์ •ํ•ฉ๋‹ˆ๋‹ค.
  • Loading branch information
yunseok-jeong0 authored Nov 15, 2019
1 parent 37a1755 commit 09a5f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Algorithm/Binary Search.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
```
* ์‹œ๊ฐ„๋ณต์žก๋„
์ „์ฒด ํƒ์ƒ‰ : O(N)
์ด๋ถ„ ํƒ์ƒ‰ : O(nlogn)
์ด๋ถ„ ํƒ์ƒ‰ : O(logN)
```

<br>
Expand Down

0 comments on commit 09a5f64

Please sign in to comment.