Skip to content

Commit 429f57b

Browse files
committed
upload notes
1 parent 5a42da8 commit 429f57b

18 files changed

+2741
-0
lines changed

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
# *.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
25+
.DS_Store
26+
.idea
27+
.lift
28+
.code

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Notes of Algorithms
2+
3+
The contents of notes come from the course *Algorithms* on Coursera ([Part I](https://www.coursera.org/learn/algorithms-part1), [Part II](https://www.coursera.org/learn/algorithms-part2)). This repository is for tracking of my own learning process, as well as for future reference.
4+
5+
> This course covers the essential information that every serious programmer needs to know about algorithms and data structures, with emphasis on applications and scientific performance analysis of Java implementations. Part I covers elementary data structures, sorting, and searching algorithms. Part II focuses on graph- and string-processing algorithms.
6+
7+
- [Notes of Algorithms, Part I](part-I/readme.md)
8+
- [Notes of Algorithms, Part II](part-II/readme.md)

0 commit comments

Comments
 (0)