Skip to content

Commit 0d5635b

Browse files
committed
Lesson 3, searching and sorting, completed
1 parent 90bede3 commit 0d5635b

7 files changed

+95
-1
lines changed

3-search-sort/BinarySearch-mine.py

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
Return the index of value, or -1 if the value
1111
doesn't exist in the list."""
1212

13+
# wow, I really overcomplicated this...
14+
1315
def binary_search(input_array, value):
1416
"""Your code goes here."""
1517
midpoint = len(input_array)//2

3-search-sort/BubbleSort-notes.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
### Bubble Sort
2+
3+
Bubble Sort has time complexity of O(n^2) for worst case and average case
4+
because it makes comparisons between two values through the entire array,
5+
needing to make n-1 comparisons per iteration of bubbling. (n-1)(n-1) = n^2 - 2n + 1
6+
Best case time complexity is if array is already sorted, which is O(n)
7+
Space complexity is O(1) because it does not make a new copy of the data structure.
8+
9+
10+
### Bubble Sort Quiz Answer:
11+
12+
[21, 4, 1, 3, 9, 20, 25, 6, 21, 14] (Original Array)
13+
[4, 1, 3, 9, 20, 21, 6, 21, 14, 25] (1)
14+
[1, 3, 4, 9, 20, 6, 21, 14, 21, 25] (2)
15+
[1, 3, 4, 9, 6, 20, 14, 21, 21, 25] (3)
16+
[1, 3, 4, 6, 9, 14, 20, 21, 21, 25] (4)
17+

3-search-sort/FibRecursive-mine.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
"""Implement a function recursively to get the desired
2+
Fibonacci sequence value.
3+
Your code should have the same input/output as the
4+
iterative code in the instructions."""
5+
6+
def get_fib(position):
7+
if position == 0:
8+
return 0
9+
elif position == 1:
10+
return 1
11+
else:
12+
return get_fib(position-1) + get_fib(position-2)
13+
14+
# O(2^n) time
15+
16+
# Test cases
17+
print get_fib(9)
18+
print get_fib(11)
19+
print get_fib(0)

3-search-sort/FibRecursive.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
def get_fib(position):
2+
if position == 0 or position == 1:
3+
return position
4+
return get_fib(position - 1) + get_fib(position - 2)

3-search-sort/MergeSort-notes.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
### Merge Sort
2+
3+
This sorting algorithm breaks everything into arrays of one, and then compares two values to each other and puts them in their own sorted array. Then it compares two arrays, and makes a new sorted array from them, and onwards until completed.
4+
5+
Time complexity is O(n log(n)) because it takes n comparisons for log n number of steps. Space complexity is O(n) since we we are making new arrays as we go through.
6+
7+
Possible to use in place merge sort to avoid added space complexity.
8+
9+
10+
### Merge Sort Quiz Answer:
11+
12+
[21, 4, 1, 3, 9, 20, 25] (Original Array)
13+
[21, 1, 4, 3, 9, 20, 25] (1)
14+
[1, 4, 21, 3, 9, 20, 25] (2)
15+
[1, 3, 4, 9, 20, 21, 25] (3)

3-search-sort/QuickSort-mine.py

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
"""Implement quick sort in Python.
2+
Input a list.
3+
Output a sorted list."""
4+
def quicksort(array):
5+
if len(array) < 2:
6+
return array
7+
stack_of_index = []
8+
index = (0, len(array) - 1)
9+
stack_of_index.append(index)
10+
for index in stack_of_index:
11+
e_index = index[0]
12+
pivot_index = index[1]
13+
while pivot_index > e_index:
14+
pivot = array[pivot_index]
15+
e = array[e_index]
16+
if e > pivot:
17+
array[pivot_index] = e
18+
array[e_index] = array[pivot_index - 1]
19+
array[pivot_index - 1] = pivot
20+
pivot_index -= 1
21+
else:
22+
e_index += 1
23+
low = index[0]
24+
high = index[1]
25+
if pivot_index > 1 and low < pivot_index - 1:
26+
stack_of_index.append((low, pivot_index - 1))
27+
if pivot_index < len(array) -1 and pivot_index + 1 < high:
28+
stack_of_index.append((pivot_index + 1, high))
29+
return array
30+
31+
32+
test = [21, 4, 1, 3, 9, 20, 25, 6, 21, 14]
33+
print(quicksort(test))

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
## Data Structures and Algorithms in Python
2-
This is a Udacity class that I was marginally curious about as a way to continue supplementing my algorithms/DS practice.
2+
This is a Udacity class that I was marginally curious about as a way to continue supplementing my algorithms/DS practice. At this point, MIT 6.00.1x has been very helpful for an introduction to Python, and MIT 6.00.2x gave me a little taste of graphs.
3+
4+
I am still working through Elements of Programming Interviews, but at times the difficulty level of the problems is quite high and I want something a bit more intermediate. I'm not sure that this class will be exactly what I'm looking for, but I will finish it and consume more material as necessary. MIT's OCW Algorithm's course might also be worth trying out after this.
5+
6+
Lastly, I plan to also get around to reading Sedgewick's Algorithms once I decide to jump into Java.

0 commit comments

Comments
 (0)