Programming Equations l Algorithms Data Structures Programs l

  • Slides: 12
Download presentation
Programming Equations l Algorithms + Data Structures = Programs Ø l How old are

Programming Equations l Algorithms + Data Structures = Programs Ø l How old are algorithms? Ø Ø l Niklaus Wirth, old view of programming and compsci Euclid: find greatest common divisor, GCD (56, 217) Who cares? What about sorting? Why is it important? Ø Ø Ø Old: Bubble sort, selection sort, insertion sort Old: Heapsort, mergesort, quicksort New: introsort, hybrid mergesort, timsort! Compsci 06/101, Fall 2010 14. 1

Tim Peters: Zen of Python l l l l Beautiful is better than ugly.

Tim Peters: Zen of Python l l l l Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Readability counts. Special cases aren't special enough to break the rules. In the face of ambiguity, refuse the temptation to guess. http: //www. python. org/dev/peps/pep-0020/ Compsci 06/101, Fall 2010 14. 2

What did I learn today? l timsort is standard on… Ø Ø Python as

What did I learn today? l timsort is standard on… Ø Ø Python as of version 2. 3, Android, Java 7 According to http: //en. wikipedia. org/wiki/Timsort • Adaptive, stable, natural mergesort with supernatural performance l What is mergesort? Ø Ø Ø Stable, what does that mean? Divide and Conquer, what does that mean? Nothing is faster, what does that mean? Quicksort is faster, what does that mean? See Merge. py Compsci 06/101, Fall 2010 14. 3

Comparing Algorithms l Searching a list of N elements for a specific value Ø

Comparing Algorithms l Searching a list of N elements for a specific value Ø l Doing binary search (guess a number), sorted list Ø l Worst case is … Sorting using merge sort Ø l Worst case is … Naïve finding which ball collides with specific ball Ø Worst case is … Compsci 06/101, Fall 2010 14. 4

Bubble Sort, A Personal Odyssey Compsci 06/101, Fall 2010 14. 5

Bubble Sort, A Personal Odyssey Compsci 06/101, Fall 2010 14. 5

11/08/77 Compsci 06/101, Fall 2010 14. 6

11/08/77 Compsci 06/101, Fall 2010 14. 6

17 Nov 75 Not needed Can be tightened considerably Compsci 06/101, Fall 2010 14.

17 Nov 75 Not needed Can be tightened considerably Compsci 06/101, Fall 2010 14. 7

Jim Gray (Turing 1998) l Bubble sort is a good argument for analyzing algorithm

Jim Gray (Turing 1998) l Bubble sort is a good argument for analyzing algorithm performance. It is a perfectly correct algorithm. But it's performance is among the worst imaginable. So, it crisply shows the difference between correct algorithms and good algorithms. (italics ola’s) Compsci 06/101, Fall 2010 14. 8

Brian Reid (Hopper Award 1982) Feah. I love bubble sort, and I grow weary

Brian Reid (Hopper Award 1982) Feah. I love bubble sort, and I grow weary of people who have nothing better to do than to preach about it. Universities are good places to keep such people, so that they don't scare the general public. (continued) Compsci 06/101, Fall 2010 14. 9

Brian Reid (Hopper 1982) I am quite capable of squaring N with or without

Brian Reid (Hopper 1982) I am quite capable of squaring N with or without a calculator, and I know how long my sorts will bubble. I can type every form of bubble sort into a text editor from memory. If I am writing some quick code and I need a sort quick, as opposed to a quick sort, I just type in the bubble sort as if it were a statement. I'm done with it before I could look up the data type of the third argument to the quicksort library. I have a dual-processor 1. 2 GHz Powermac and it sneers at your N squared for most interesting values of N. And my source code is smaller than yours. Brian Reid who keeps all of his bubbles sorted anyhow. Compsci 06/101, Fall 2010 14. 10

Niklaus Wirth (Turing award 1984) I have read your article and share your view

Niklaus Wirth (Turing award 1984) I have read your article and share your view that Bubble Sort has hardly any merits. I think that it is so often mentioned, because it illustrates quite well the principle of sorting by exchanging. I think BS is popular, because it fits well into a systematic development of sorting algorithms. But it plays no role in actual applications. Quite in contrast to C, also without merit (and its derivative Java), among programming codes. Compsci 06/101, Fall 2010 14. 11

Owen O’Malley Debugging can be frustrating, but very rewarding when you find the cause

Owen O’Malley Debugging can be frustrating, but very rewarding when you find the cause of the problem. One of the nastiest bugs that I’ve found when I was at NASA and the Mars Explorer Rovers had just landed on Mars. http: //sortbenchmark. org/ Hadoop sets Terabyte sort record l Ø Ø Ø Java 34252 nodes Greedy! Compsci 06/101, Fall 2010 14. 12