1 / 35

CS 115 FINAL Review Session

CS 115 FINAL Review Session. Srinidhi Sridharan. 2A Mathematics and Business Admin. Double Degree Major in Accounting, Minor in Computer Science Employers GE Capital: Assistant Account Manager (Risk Management) KPMG: Staff Accountant (Audit) Email: srinidhi22@hotmail.com.

sheila
Download Presentation

CS 115 FINAL Review Session

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS 115 FINAL Review Session

  2. SrinidhiSridharan • 2A Mathematics and Business Admin. Double Degree • Major in Accounting, Minor in Computer Science • Employers • GE Capital: Assistant Account Manager (Risk Management) • KPMG: Staff Accountant (Audit) • Email: srinidhi22@hotmail.com

  3. Topics to Cover • Structures • Lists • Recursion • Lists of Lists • Processing Two Lists • Binary Trees • Binary Search Trees • Mutual Recursion • Local • Functional Abstraction

  4. Structures • A structure is a way of bundling data together to form a single package • You can create functions that consume and or produce structures • Define our own structures • Each individual structure has a • Constructor function • Selector Function • Type Predicate Function

  5. Structures • To define a structure: • (define-structsname (field1 field2.....)) • Doing this gives you three functions • make-sname ;constructor • sname-field1, sname-field2.... ;selectors • sname? ;type predicate

  6. Structure Template • (define (my-structure-fn a-struct) • ...(structure-f1 a-struct)... • ...(structure-f2 a-struct)... • ... • ...(structure-fn a-struct)...)

  7. Structure vs Data Definition • A Data Definition: is a comment specifying the types of data • ;;a posn is a structure (make-posn xcoord ycoord), where • ;;xcoord is a number • ;;ycoord is a number • Structure Definitions: show what each item represents • (define-struct contact (name email-address)) • ;; A contact is a structure (make-contact n e) where • ;; n is a non‐empty string representing a person's name and • ;; e is a non‐empty string representing a person's email address.

  8. List The CS Data Definition My Explanation Break every list in CS into • The first element • The rest of the list • *the rest of the list is also a list • The empty list is just: empty A list is either: • empty or • (cons f r), where • *f is a value and • *r is a list A list in scheme looks like this: (cons ‘a (cons ‘b (cons ‘c (cons ‘d empty)))) empty (list ‘a ‘b ‘c ‘c)

  9. List Template (define (mylistalist) (cond [(empty? alist)...] [(cons? alist) ...]))

  10. Introduction to Recursion Recursion in CS: The continuous application of a function on a variable that is defined in terms of a past variable Recursive Process: Base Case: The starting & ending point of the function Recursive Part: Only if your base case fails What do you want to change if your base case fails? Keep doing this until your base case passes

  11. Introduction to Recursion A general recursive template (define (my-recurseint) (cond [(base-case? int) ...] [ else ...... (my-recurse ......)])) Defining A Base Case Re-Apply Function on Changed Variable Store/Alter The Variable

  12. Problem 1 • Give the structure templates for the following structures. Then, define a function that consumes a list of CD structures and produces the total price, using the template for CD. • (define-struct movie (title producer)) • (define-struct CD (artist title price)) • All my solutions are on the downloadable PDF package

  13. List of List ... Diagrams (list (list 4 2) (list 1 7) 6)

  14. List of List Template (define (my-list-fn a-list) (cond ((empty? a-list) ...) ((cons? (first a-list)) ...) (else ...(first a-list)...(my-list-fn (rest a-list)))))

  15. List of Lists: Association List • AKA. Dictionaries • Each list contains smaller lists with two elements (list (list a 5) (list srin 6) (list srinidhi 19)) • One represents a key, the other represents a value that is to be associated with a key • An al is either empty or (cons (list k v) alst) where k is a number (key), v is a string (value) and alst is an al

  16. Problem 2 • Consume an association list and a key and find the value that corresponds to that key, or return false if the key is not found. • All my solutions are on the downloadable PDF package

  17. Processing Two Lists Three Methods for Processing Two Lists Have a list “go along for the ride” Processing in Lockstep (only for lists of equal lengths) Processing Lists at Different Rates We’re going to do examples of each of these types!

  18. Problem 3 Going along for the ride Develop a function, cross, that consumes a list of symbols and a list of numbers and produces all possible pairs of symbols and numbers.

  19. Lockstep Template (define (my-list-fn lst1 lst2) (cond ((empty? lst1) ...) (else ... (first lst1) ... (first lst2)... ... (my-lst-fn (rest lst1) (rest lst2))))

  20. Problem 4 Lockstep Develop the function zip, which combines a list of names and a list of phone numbers into a list of phone records. The lists are of the same size. Assume the following structure definition: (define-struct phone-record (name number)) ;;A phone-record is a structure (make-phone-record s n) ;; where s is a string representing a person’s name ;; n is a number representing their number

  21. Processing Different Rates These problems have basic templates that tend to work really well! (define (my-lst-fn lst1 lst2) (cond ((and (empty? lst1) (empty? lst2)) ...) ((and (cons? lst1) (empty? lst2)) ...) ((and (empty? lst1) (cons? lst2)) ...) ((and (cons? lst1) (cons? lst2)) ...)))

  22. Problem 5 Processing Lists at Different Rates The function DNAprefix consumes two lists of symbols called pattern and search-string and returns true if pattern is a prefix of search-string, and false otherwise. The modified function returns the first item beyond the pattern in the search-string if the pattern is a proper prefix of search-string. Otherwise, it returns false.

  23. Binary Trees (define-struct node (key val left right) A binary tree is either EMPTYOr (make-node k v l r)k is a number => like the key from an association listv is a value => like the value from an association listl => is a binary treer => is a binary tree

  24. Binary Search Trees (define-struct node (key val left right) A binary tree is either EMPTYOr (make-node k v l r)k is a number => like the key from an association listv is a value => like the value from an association listl => is a binary tree, with keys less than kr => is a binary tree with keys greater than k

  25. Binary Search Trees

  26. Problem 6 Develop the function, contains-bt. The function consumes a binary tree and a number n and determines whether the number occurs in the tree. (define-struct node (key val left right))

  27. Problem 7 Develop the function, contains-bst. The function consumes a binary search tree and a number n and determines whether the number occurs in the tree. (define-struct node (key val left right))

  28. Mutual Recursion • You are “referring” to another function when you make your recursive calls. • (define-structae (fn args)) • A number or • (make-ae f alist), where f is a symbol, and alist is an aexplist • An aexplistis either • Empty or • (cons a alist), where a is an aexp, and alist is an aexplist

  29. Mutual Recursion (define (eval ex) (cond ((number? ex) ex) (else (eval/list (ae-fn ex) (ae-args ex))))) (define (eval/list f exlist) (cond ((empty? exlist) ...) ((equal? f '*)(* (eval (first exlist)) (eval/list f (rest exlist)))) ((equal? f '+)(+ (eval (first exlist)) (eval/list f (rest exlist))))))

  30. Mutual Recursion If you have two structures that refer to each other in their definitions, it's usually a sign that mutual recursion should be used.

  31. Local • Benefits of local definitions: • hide helper functions inside main function • improve efficiency • The exact helper functions you were using before can now be contained in the code • (define (swap-parts mystring) • (local ((define len (string-length mystring)) • (define mid (quotient len 2)) • (define front (substring mystring 0 mid)) • (define back (substring mystring mid len)))) • (string-append back front)))

  32. Functional Abstraction The filter function. filter takes a question and a list; for every element in the list that evaluates the question to true, filter returns those elements in a new list. Contract: (X → boolean) (list of X) → (list of X) Example: (filter even? (list 1 2 3 4)) → (list 2 4)

  33. Problem 8 Create the function perfect-squares that consumes a list of non negative integers, lon, and produces a list of all those elements from lon that are perfect squares

  34. Functional Abstraction The map function map takes a list of numbers and a function, and applies the function to the list of numbers. Contract: (X → Y) (list of X) → (list of Y) Example: (map add1 (list 1 2 3)) → (list 2 3 4)

  35. Functional Abstraction The foldr function foldr takes a list and function, then reduces the list to a single value using the function. Contract: (X → X) X (list of X) → X Example: (foldr max 0 (list 5 6 3 4 3 2)) → 6

More Related