//review of sort algorithms //comparison: graph analysis //we did quiz5 //why do we sort? // to find things faster. // Sequential search take in the order of N to find an item. // Binary seach is a fast search that take Log(N) // If N is a billions N and Log(N) are much different!