Data Structures
Data Structures
2 Algorithms
2.1 Sorting algorithms (M2)
2.1.1 Bubble sort (or other O(n2) sort algorithms)
Describe how it works
Analyze its performance (time, memory)
2.1.2 Quick sort (or other O(nlogn) sort algorithms)
Describe how it works
Analyze its performance (time, memory)
2.2 Shortest path algorithms (D1)
2.2.1 Dijkstra’s algorithm
Describe how it works by using concrete example
2.2.2 Bellman Ford’s algorithm
Describe how it works by using concrete example