Skip to content

Commit 543933d

Browse files
committedJun 23, 2019
works with PDF!!

File tree

150 files changed

+7947
-249
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+7947
-249
lines changed
 

‎.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,11 @@ Desktop.ini
137137
######################
138138
# Gemfile
139139
# Gemfile.lock
140-
Makefile
141-
_conf
142-
_resources
143-
extensions
144-
fonts
140+
# Makefile
141+
# _conf
142+
# _resources
143+
# extensions
144+
# fonts
145145

146146

147147
######################
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[[time-complexity-cheatsheet]]
2+
[appendix]
3+
== Time Complexity Cheatsheet
4+
5+
This section summerize what we are going to cover in the rest of this book.
6+
7+
// === Runtimes
8+
9+
// include::big-o-examples.adoc[tag=table]
10+
11+
// include::algorithms-analysis.adoc[tag=table]
12+
13+
// === Linear Data Structures
14+
15+
// include::linear-data-structures-outro.adoc[tag=table]
16+
17+
// === Trees and Maps Data Structures
18+
19+
// This section covers Binary Search Tree (BST) time complexity (Big O).
20+
21+
// include::part3.adoc[tag=table]
22+
23+
// include::graph.adoc[tag=table]
24+
25+
// === Sorting Algorithms
26+
27+
// include::sorting-summary.adoc[tag=table]
28+
29+
// // https://algs4.cs.princeton.edu/cheatsheet/
30+
// // http://bigocheatsheet.com/
31+
32+
// // https://en.wikipedia.org/wiki/Timsort (Tim Peters)
33+
// // https://bugs.python.org/file4451/timsort.txt
34+
// // https://www.youtube.com/watch?v=emeME__917E&list=PLMCXHnjXnTntLcLmA5SqhMspm7burHi3m
35+
36+
// // https://en.wikipedia.org/wiki/Sorting_algorithm
37+
// // http://sorting.at/
38+
// // https://www.toptal.com/developers/sorting-algorithms
39+
// // https://www.infopulse.com/blog/timsort-sorting-algorithm/

0 commit comments

Comments
 (0)