Skip to content

Latest commit

 

History

History
153 lines (131 loc) · 20 KB

File metadata and controls

153 lines (131 loc) · 20 KB
  1. Introduction
At a glance: Notes
  1. 1. Constant Time Complexity
  2. 2. Linear Time Complexity
  3. 3. Quadratic Time Complexity
  4. 4. Hints of polinomial Time Complexity
  5. 5. Logarithmic Time
  6. 6. Summary
At a glance: Notes
  1. 1. What is recursion?
  2. 2. How Does Recursion Work?
  3. 3. Recursion Pitfalls
  4. 4. How to Avoid Infinite Recursion
At a glance: Notes
  1. 1. Calculate Sum(n)
  2. 2. Pair Matching Challenge
  3. 3. Find the Equilibrium Index
  4. 4. Summary
  1. 1. Why Generics?
  2. 2. Generic Types
  3. 3. Generic Functions
At a glance: Notes
  1. 1. NSArray / NSMutableArray
  2. 2. NSSet/NSMutableSet
  3. 3. NSDictionary/NSMutableDictionary
  4. 4. C primitive types
  5. 5. Collections and nil
At a glance: Notes
  1. 1. Selection Sort
  2. 2. Insertion Sort
  3. 3. Insertion Sort vs Selection Sort
  4. 4. Bubble Sort
  5. 5. Selection vs Insertion vs Bubble sort algorithms
At a glance: Notes
  1. 1. The merge sort
  2. 2. QuickSort
  3. 3. Merge sort vs QuickSort