Some notes about the course MIT 6.006 Introduction to Algorithms, Spring 2020
- Solve computational problems
- Prove correctness
- Argue efficiency
- Communicate solution
A binary relation. A set of inputs and outputs. A predicate/statement that allow us to confirm that some relation between input and output holds.
A function description, a procedure, a recipe that explains how to obtain output from input, how input relates to output.
In a classroom, there are any pair of students with same birth date?
- Add a student's birthday to a record
- Inform if a birthday pair exist in the record
- Repeat until there are no more students to add
- Correctness
Inductive Hypothesis:
if the first
the algorithm returns it before interviewing student
Base case:
- Efficiency
Don't measure time, cause it depends on the power of computer. Instead, measure quantity of operations
Asymptotic (relative to problem input size) notation
-
$O()$ upper bound -
$\Omega()$ lower bound -
$\Theta()$ both
Note:
Possible computing operations on the reference model of computation:
- Integer aritmethic
- logic operations
- bitwise operations
- Read and write from an arbitrary memory address in constant time (Word-RAM)
A CPU takes a constant amount of time to operate on a constant amount of memory.
Operate over a linear amount of memory takes a linear amount of time.
Data structures are ways of storing non-constant amount and make operations over them faster.
- Reduce it to a known algorithm
- Design your own (recursive) algorithm
- Can't see how to reach answer with logarithmic operations
- Why? Needs explanation (valid for all lacking mathematical background)
- Specification
- What data can stored
- Which operations are supported
- Representation
- How data is stored
- Algorithms supporting operations
- Characterized by an extrinsic (external) order, defined by who provided the data
- Operations: build, len, iterate, get_at, set_at
- Characterized by an intrinsic (internal) order, usually a unique key.
- Operations: build, len, iterate, find
- Static Array
- Linked List
- Dynamic Array
Notice that none of these implementations support insert_at, delete_at operations in sub-linear time.
The memory of our computer is a big fixed-lenght array that allows implement get_at() and
set_at() in
delete_at() and insert_at() implementation takes inear-time
- Linked List Sequence
- Dynamic Array Sequence
The Set interface can be simulated using a Sequence interface, but this results in poor performance
One of the simplest ways to get a faster Set is to store our items in a sorted array
Then we can simply binary search to find keys and support Order operations
This is still not great for dynamic operations (items still need to be shifted when inserting or removing from the middle of the array), but finding items by their key is much faster!
func InsertionSort(a []int32) []int32 {
for i, _ := range a[0:] {
j := i
for j > 0 && a[j] < a[j-1] {
a[j-1], a[j] = a[j], a[j-1]
j = j - 1
}
}
return a
}
func SelectionSort(a []int32) []int32 {
var m int32
// traverse the array reward (from last to first)
// find the greatest and put it at the end of the unsorted array
// i equals to the position of the last element of unsorted array
for i := int32(len(a) - 1); i > 0; i-- {
m = i
for j := int32(0); j < i; j++ {
// if some element of the unsorted array is greater
// than the
if a[m] < a[j] {
// position of greatest element temporarily
// stored in m
m = j
}
// put last element of unsorted array in the place of greatest element
// put the greatest element as last element
a[m], a[i] = a[i], a[m]
}
}
return a
}
func MergeSort(a []int32) []int32 {
// stop condition
if len(a) < 2 {
return a
}
l := MergeSort(a[:len(a)/2])
r := MergeSort(a[len(a)/2:])
merged := []int32{}
i, j := 0, 0
for i < len(l) && j < len(r) {
if l[i] < r[j] {
merged = append(merged, l[i])
i++
} else {
merged = append(merged, r[j])
j++
}
}
for ; i < len(l); i++ {
merged = append(merged, l[i])
}
for ; j < len(r); j++ {
merged = append(merged, r[j])
}
return merged
}
package main
import "fmt"
func main() {
fmt.Println("Goodbye Computer Science!")
}
Citing code