Skip to content

Commit c44b2bd

Browse files
committed
2 parents 0f4611d + 3319fec commit c44b2bd

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,18 @@ algorithm and data structure
1717

1818

1919
Sample :
20+
2021
| | n = 1 | n = 16 | n = 256 | n = 4K | n = 64K | n = 1M |
2122
|-----------|:---------:|:---------:|:---------:|:---------:|:---------:|:---------:|
2223
| O(1) | 1.000E+00 | 1.000E+00 | 1.000E+00 | 1.000E+00 | 1.000E+00 | 1.000E+00 |
2324
| O(lg n) | 0.000E+00 | 4.000E+00 | 8.000E+00 | 1.200E+01 | 1.600E+01 | 2.000E+01 |
2425
| O(n) | 1.000E+00 | 1.600E+01 | 2.560E+02 | 4.096E+03 | 6.554E+04 | 1.049E+06 |
2526
| O(n lg n) | 0.000E+00 | 6.400E+01 | 2.048E+03 | 4.915E+04 | 1.049E+06 | 2.097E+07 |
2627
| O(n2) | 1.000E+00 | 2.560E+02 | 6.554E+04 | 1.678E+07 | 4.295E+09 | 1.100E+12 |
27-
| O(2n) | 2.000E+00 | 6.554E+04 | 1.158E+77 ||||
28-
| O(n!) | 1.000E+00 | 2.092E+13 |||||
28+
| O(2n) | 2.000E+00 | 6.554E+04 | 1.158E+77 ||||
29+
| O(n!) | 1.000E+00 | 2.092E+13 |||||
30+
31+
32+
### DFS Console visualizer
33+
34+
![](https://raw.githubusercontent.com/evilz/algorithm-datastructure/master/DFS-Visualizer.gif)

0 commit comments

Comments
 (0)