DOC PREVIEW
Duke CPS 100E - Java-style

This preview shows page 1-2-19-20 out of 20 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 20 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 20 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 20 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 20 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 20 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

COMPSCI 100, Java-style Owen AstrachanWhat is Computer Science?Programming != Computer ScienceEfficient design, programs, codeCourse OverviewQuestionsTradeoffsOO design in code/wordcountFast, cheap, out-of-control?Some Java Vocabulary and ConceptsBasic data structures and algorithmsTracking different/unique wordsWhat does try to do? Why is it wrong?Search: measuring performanceTradeoffs in processing and countingBenefits of inheritance, interfacesWhy inheritance?Example of inheritanceInheritance (language independent)Who is Alan Perlis?CPS 1001.1COMPSCI 100, Java-styleOwen Astrachanhttp://www.cs.duke.edu/courses/cps100/fall04http://www.cs.duke.edu/~olaCPS 1001.2What is Computer Science?What is it that distinguishes it from the separate subjects with which it is related? What is the linking thread which gathers these disparate branches into a single discipline? My answer to these questions is simple --- it is the art of programming a computer. It is the art of designing efficient and elegant methods of getting a computer to solve problems, theoretical or practical, small or large, simple or complex. C.A.R. (Tony)HoareCPS 1001.3Programming != Computer ScienceWhat is the nature of intelligence? How can one predict the performance of a complex system? What is the nature of human cognition? Does the natural world 'compute'?It is the interplay between such fundamental challenges and the human condition that makes computer science so interesting. The results from even the most esoteric computer science research programs often have widespread practical impact. Computer security depends upon the innovations in mathematics. Your Google search for a friend depends on state-of-the-art distributed computing systems, algorithms, and artificial intelligence.http://www.post-gazette.com/pg/pp/04186/341012.stmCPS 1001.4Efficient design, programs, codeObject-oriented design and patterns. Software design principles transcend language, but …Engineer, scientist: what toolkits do you bring to programming? Mathematics, design patterns, libraries --- standard and Duke CPSKnow data structures and algorithms. Trees, hashing, binary search, sorting, priority queues, greedy methods, …Using the language: Java (or C++, or Python, or …), its idioms, its idiosyncraciesCPS 1001.5Course OverviewLectures, Recitations, Quizzes, ProgramsRecitation based on questions given out in previous week•Discuss answers, answer new questions, small quiz•More opportunities for questions to be answered.Lectures based on readings, questions, programs•Online quizzes used to motivate/ensure reading•In-class questions used to ensure understandingPrograms•Theory and practice of data structures and OO programming•Fun, practical, tiring, …•Weekly programs and longer programsExams/TestsSemester: closed bookFinal: open bookCPS 1001.6QuestionsIf you gotta ask, you’ll never knowLouis Armstrong: “What’s Jazz?”If you gotta ask, you ain’t got itFats Waller: “What’s rhythm?”What questions did you ask today? Arno PenziasCPS 1001.7TradeoffsSimple, elegant, quick, efficient: what are our goals in programming? What does XP say about simplicity? Einstein?How do we decide what tradeoffs are important? Tension between generality, simplicity, elegance, …Fast programs, small programs, run anywhere-at-all programs. Runtime, space, your time, CPU time…Programming, design, algorithmic, data-structuralCPS 1001.8OO design in code/wordcountCount number of different words in an array, how can we accommodate more than one approach?public interface UniqueCounter { public int uniqueCount(String[] list);}Three (ore more) approaches:  CPS 1001.9Fast, cheap, out-of-control?This is valid and correct Java code, questions?import java.util.*;public class SetUniqueCounter implements UniqueCounter { public int uniqueCount(String[] list) { TreeSet set = new TreeSet(); set.addAll(Arrays.asList(list)); return set.size(); }}CPS 1001.10Some Java Vocabulary and ConceptsJava has a huge standard libraryOrganized in packages: java.lang, java.util, javax.swing, …API browseable online, but Eclipse IDE helps a lotJava methods have different kinds of access inter/intra classPublic methods …Private methods …Protected and Package methods …Primitive types (int, char, double, boolean) are not objects but everything else is literally an instance of class Objectfoo.callMe();CPS 1001.11Basic data structures and algorithmsArrays are typed and fixed in size when createdNot like vector/tvector in C++/TapestryDon't have to fill the array, but cannot expand itCan store int, double, String, Foo, …ArrayList (and related class Vector and interface List) growsStores objects, not primitivesAccessing elements can require a downcastArrayList objects grow themselves intelligentlyjava.util package has lots of data structures and algorithmsUse rather than re-implement, but know how do to do bothCPS 1001.12Tracking different/unique wordsWe want to know how many times ‘the’ occursDo search engines do this? Does the number of occurrences of “basketball” on a page raise the priority of a webpage in some search engines?•Downside of this approach for search engines?Constraints on solving this problemWe must read every word in the file (or web page)Search for the word? Avoid counting twice? Store?Are there fundamental limits on any of these operations? Where should we look for data structure and algorithmic improvements?CPS 1001.13What does try to do? Why is it wrong?public class SlowUniqueCounter implements UniqueCounter{ public int uniqueCount(String[] list) { int count = 0; int diffSize = list.length; for(int k=0; k < diffSize; k++){ String word = list[k]; count++; for(int j=k+1; j < diffSize; j++){ if (list[j].equals(word)){ list[j] = list[diffSize-1]; diffSize--; } } } return count; }}CPS 1001.14Search: measuring performanceHow fast is fast enough? /** pre: a contains a.size() entries * post: return true if and only if key found in a */ boolean search(ArrayList a, String key) { for(int k=0; k < a.size(); k++) if (a[k].equals(key)) return true; return false; }Java details: parameters? Return values? ArrayLists?How do we measure performance of code? Of


View Full Document

Duke CPS 100E - Java-style

Documents in this Course
Topics

Topics

9 pages

Lecture

Lecture

3 pages

Notes

Notes

2 pages

Hashing

Hashing

19 pages

Lecture

Lecture

59 pages

Lecture

Lecture

6 pages

Lecture

Lecture

4 pages

Lecture

Lecture

20 pages

Lecture

Lecture

12 pages

Lecture

Lecture

12 pages

Lecture

Lecture

7 pages

Lecture

Lecture

8 pages

Lecture

Lecture

10 pages

Lecture

Lecture

4 pages

Notes

Notes

16 pages

Lecture

Lecture

5 pages

Lecture

Lecture

9 pages

Lecture

Lecture

4 pages

Lecture

Lecture

13 pages

Lecture

Lecture

6 pages

Lecture

Lecture

16 pages

Lecture

Lecture

5 pages

Lecture

Lecture

5 pages

Lecture

Lecture

12 pages

Lecture

Lecture

12 pages

Lecture

Lecture

10 pages

Sets

Sets

14 pages

Lecture

Lecture

9 pages

Lecture

Lecture

4 pages

Test 1

Test 1

7 pages

Load more
Download Java-style
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Java-style and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Java-style 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?