from practice to theory and back again tools for
play

From practice to theory and back again Tools for algorithms and - PowerPoint PPT Presentation

From practice to theory and back again Tools for algorithms and programs In theory there is no difference between theory and practice, but We can time different methods, but how to compare timings? not in practice Different on different


  1. From practice to theory and back again Tools for algorithms and programs In theory there is no difference between theory and practice, but ● We can time different methods, but how to compare timings? not in practice ➤ Different on different machines, what about “workload”? ● We’ve studied binary search, that requires a sorted vector ➤ Mathematical tools can help analyze/discuss algorithms ➤ Much faster than sequential search (how much) ➤ Add elements in sorted order or sort vector after adding ● We often want to sort by different criteria ➤ Sort list of stocks by price, shares traded, volume traded ● Many sorting algorithms have been well-studied ➤ Sort directories/files by size, alphabetically, or by date ➤ Slower ones are often “good enough” simple to implement ➤ Object-oriented concepts can help in implementing sorts ➤ Some fast algorithms are better than others • Always fast, fast most-of-the-time • Good in practice even if flawed theoretically? ● We often want to sort different kinds of vectors: string and int ● New algorithms still discovered ➤ Don’t want to duplicate the code, that leads to errors ➤ Quick sort in 1960, revised and updated in 1997 ➤ Generic programming helps, in C++ we use templates A Computer Science Tapestry 11.1 A Computer Science Tapestry 11.2 Removing some elements from vector Another version of removing elements void RemoveBozos(tvector<string>& a) void RemoveBozos(tvector<string>& a) // pre: a contains a.size() entries { // post: all bozos removed from a, order of other elements int j,k; // unchanged, a contains a.size() elements for(k=0; k < a.size(); k++) { { if (IsBozo(a[k])) int k; { for(j=k; j < a.size()-1; j++) int nonBozoCount = 0; { a[j] = a[j+1]; // invariant: a[0..nonBozoCount-1] are NOT bozos } for(k=0; k < a.size(); k++) { a.pop_back(); if (! IsBozo(a[k])) k--; // k++ coming, but a[k] not checked { } a[nonBozoCount] = a[k]; } nonBozoCount++; } } ● Note k--, use a while loop instead (for common in student } a.resize(nonBozoCount); solutions) } ● How many elements of a compared/shifted? Worst case? Best ● How many elements of a are examined? Moved? case? ➤ 1000 element vector takes 20 secs., how long for 2000 elements? A Computer Science Tapestry 11.3 A Computer Science Tapestry 11.4

  2. On to sorting: Selection Sort Selection Sort: The Code ( selectsort2.cpp ) void SelectSort(tvector<int> & a) ● Find smallest element, move into first array location // pre: a contains a.size() elements ● Find next smallest element, move into second location // post: elements of a are sorted in non-decreasing order { ➤ Generalize and repeat int j,k,temp,minIndex,numElts = a.size(); // invariant: a[0]..a[k-1] in final position for(k=0; k < numElts - 1; k++) ● How many elements examined to find smallest? { minIndex = k; // minimal element index ➤ How many elements examined to find next smallest? for(j=k+1; j < numElts; j++) { if (a[j] < a[minIndex]) ➤ Total number of elements examined? N + (N-1) + … + 1 { minIndex = j; // new min, store index ➤ How many elements swapped? } } temp = a[k]; // swap min and k-th elements ● Simple to code, reasonable in practice for small vectors a[k] = a[minIndex]; a[minIndex] = temp; ➤ What’s small? What’s reasonable? What’s simple? } } A Computer Science Tapestry 11.5 A Computer Science Tapestry 11.6 What changes if we sort strings? Creating a function template ● The parameter changes, the definition of temp changes template <class Type> void SelectSort(tvector<Type> & a) ➤ Nothing else changes, code independent of type // pre: a contains a.size() elements // post: elements of a are sorted in non-decreasing order ➤ We can use features of language to capture independence { int j,k,minIndex,numElts = a.size(); Type temp; // invariant: a[0]..a[k-1] in final position ● We can have different versions of function for different array for(k=0; k < numElts - 1; k++) types, with same name but different parameter lists { minIndex = k; // minimal element index ➤ Overloaded function: parameters different so compiler can for(j=k+1; j < numElts; j++) { if (a[j] < a[minIndex]) determine which function to call { minIndex = j; // new min, store index } ➤ Still problems, duplicated code, new algorithm means …? } temp = a[k]; // swap min and k-th elements a[k] = a[minIndex]; ● With function templates we replace duplicated code a[minIndex] = temp; maintained by programmer with compiler generated code } } ● When the user calls this code, different versions are compiled A Computer Science Tapestry 11.7 A Computer Science Tapestry 11.8

  3. Some template details From practical to theoretical ● Function templates permit us to write once, use several times ● We want a notation for discussing differences between algorithms, avoid empirical details at first for several different types of vector ➤ Empirical studies needed in addition to theoretical studies ➤ Template function “stamps out” real function ➤ As we’ll see, theory hides some details, but still works ➤ Maintenance is saved, code still large (why?) ● Binary search : roughly 10 entries in a 1,000 element vector ● What properties must hold for vector elements? ➤ What is exact relationship? How to capture “roughly”? ➤ Comparable using < operator ➤ Compared to sequential/linear search? ➤ Elements can be assigned to each other ● We use O-notation, big-Oh, to capture properties but avoid details ● Template functions capture property requirements in code ➤ N 2 is the same as 13N 2 is the same as 13N 2 + 23N ➤ Part of generic programming ➤ O(N 2 ), in the limit everything is the same ➤ Some languages support this better than others A Computer Science Tapestry 11.9 A Computer Science Tapestry 11.10 Running times @ 10 6 instructions/sec What does table show? Hide? ● Can we sort a million element vector with selection sort? N O(log N) O(N) O(N log N) O(N 2 ) ➤ How can we do this, what’s missing in the table? 0.000003 0.00001 0.000033 0.0001 10 ➤ What are hidden constants, low-order terms? 0.000007 0.00010 0.000664 0.1000 100 ● Can we sort a billion-element vector? Are there other sorts? 0.000010 0.00100 0.010000 1.0 1,000 ➤ We’ll see quicksort, an efficient (most of the time) method 0.000013 0.01000 0.132900 1.7 min 10,000 ➤ O(N log N), what does this mean? 0.000017 0.10000 1.661000 2.78 hr 100,000 ● Sorting code for different algorithms in sortall.h/sortall.cpp 0.000020 1.0 19.9 11.6 day 1,000,000 ➤ Template functions, prototypes in .h file, implementations 0.000030 16.7 min 18.3 hr 318 in .cpp file, must have both (template isn’t code!!) 1,000,000,000 centuries A Computer Science Tapestry 11.11 A Computer Science Tapestry 11.12

  4. Templates and function objects Function object concept ● In a templated sort function vector elements must have certain ● To encapsulate comparison (like operator <) in a parameter properties (as noted previously) ➤ Need convention for parameter : name and behavior ➤ Comparable using operator < ➤ Other issues needed in the sort function, concentrate on ➤ Assignable using operator = being clients of the sort function rather than implementors ➤ Ok for int, string, what about Date? ClockTime? ● Name convention: class/object has a method named compare ● What if we want to sort by a different criteria ➤ Sort strings by length instead of lexicographically ➤ Two parameters, the vector elements being compared (might not be just vector elements, any two parameters) ➤ Sort students by age, grade, name, … ● Behavior convention: compare returns an int ➤ Sort stocks by price, shares traded, profit, … ● We can’t change how operator < works ➤ zero if elements equal ➤ +1 (positive) if first > second ➤ Alternative: write sort function that does NOT use < ➤ -1 (negative) if first < second ➤ Alternative: encapsulate comparison in parameter, pass it A Computer Science Tapestry 11.13 A Computer Science Tapestry 11.14 Function object example Another function object example class StrLenComp ● Consider “directory.h” and the class DirEntry { ➤ DirEntry encapsulates file/directory public: ➤ Methods : Name(), Size(), Path(), GetTime(), … int compare(const string& a, const string& b) const // post: return -1/+1/0 as a.length() < b.length() { ● To sort using Name() use class below, what about Size() ? if (a.length() < b.length()) return -1; if (a.length() > b.length()) return 1; class DirNameComp return 0; { } public: }; int compare(const DirEntry& a, const DirEntry& b) const // to use this: // post: return -1/+1/0 as a.length() < b.length() StrLenComp scomp; { if (scomp.compare(“hello”, “goodbye”) < 0) … if (a.Name() < b.Name()) return -1; if (a.Name() > b.Name()) return 1; ● We can use this to sort, see strlensort.cpp return 0; ➤ Call of sort: InsertSort(vec, vec.size(), scomp); } } A Computer Science Tapestry 11.15 A Computer Science Tapestry 11.16

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend