Skip to content

Commit 84af7e7

Browse files
authored
GH-180: Big-O in General (#214)
1 parent 43f8670 commit 84af7e7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

concepts/general/big-o.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
> In computer science, the time complexity is the computational complexity that describes the amount of computer time it takes to run an algorithm. Time complexity is commonly estimated by counting the number of elementary operations performed by the algorithm, supposing that each elementary operation takes a fixed amount of time to perform.
66
7-
![](../abstract/basic-concepts/big-o-notation.png)
7+
<p align="center">
8+
<img src="/concepts/general/basic-concepts/big-o-notation.png" width="600px"/>
9+
</p>
810

911
## Constant Run Time
1012

@@ -164,6 +166,7 @@ Runtime for `combine()` is $O(n^2)$
164166
165167
## 🔗 Further Reading
166168
169+
* [bigocheatsheet.com](https://www.bigocheatsheet.com/)
167170
* [Time complexity](https://en.wikipedia.org/wiki/Time_complexity), wikipedia
168171
* [Space complexity](https://en.wikipedia.org/wiki/Space_complexity), wikipedia
169172
* ▶️ [Asymptotic Notation](https://www.youtube.com/watch?v=iOq5kSKqeR4&ab_channel=CS50), CS50

0 commit comments

Comments
 (0)