introduction to computer science
play

Introduction to Computer Science CSCI 109 An al thm (pronounced - PowerPoint PPT Presentation

Introduction to Computer Science CSCI 109 An al thm (pronounced AL-go-rith- algori rithm Readings um) is a procedure or formula for St. Amant, Ch. 4, Ch. 8 solving a problem. The word derives from the name of the mathematician, Mohammed


  1. Introduction to Computer Science CSCI 109 “An al thm (pronounced AL-go-rith- algori rithm Readings um) is a procedure or formula for St. Amant, Ch. 4, Ch. 8 solving a problem. The word derives from the name of the mathematician, Mohammed ibn-Musa al-Khwarizmi, who was part of the royal court in Baghdad and who lived from about China – Tianhe-2 Andrew Goodney 780 to 850.” Fall 2017 Lecture 5: Data Structures & Algorithms 9/25, 2017

  2. Reminders u Quiz 2 today (covers lecture material from 1/30 and 2/6) u No lecture next week (Feb 20) due to Presidents’ day u Quiz 3 on Feb 27 (covers lecture material from today (2/13)) u HW2 due on 2/27 u Midterm on 3/20 1

  3. Where are we? Date Topic Assigned Due Quizzes/Midterm/Final What is computing, how did computers 21-Aug Introduction come to be? How is a modern computer built? Basic 28-Aug Computer architecture HW1 architecture and assembly 4-Sep Labor day Why organize data? Basic structures for 11-Sep Data structures HW1 organizing data Last day to drop a Monday-only class without a mark of “W” and receive a 12-Sep refund or change to Pass/No Pass or Audit for Session 001 Quiz 1 on material taught in 18-Sep Data structures HW2 Trees, Graphs and Traversals class 8/21-8/28 25-Sep More Algorithms/Data Structures Recursion and run-time How "long" does it take to run an Quiz 2 on material taught in 2-Oct Complexity and combinatorics HW2 algorithm. class 9/11-9/25 Last day to drop a course without a mark of “W” on the transcript 6-Oct (Somewhat) More complicated algorithms Quiz 3 on material taught in 9-Oct Algorithms and programming and simple programming constructs class 10/2 Quiz 4 on material taught in 16-Oct Operating systems What is an OS? Why do you need one? HW3 class 10/9 Midterm on all material 23-Oct Midterm Midterm taught so far. How are networks organized? How is the 30-Oct Computer networks HW3 Internet organized? What is AI? Search, plannning and a quick Quiz 5 on material taught in 6-Nov Artificial intelligence introduction to machine learning class 10/30 Last day to drop a class with a mark of “W” for Session 001 10-Nov Quiz 6 on material taught in 13-Nov The limits of computation What can (and can't) be computed? HW4 class 11/6 Robotics: background and modern Quiz 7 on material taught in 20-Nov Robotics systems (e.g., self-driving cars) class 11/13 Quiz 8 on material taught in 27-Nov Summary, recap, review Summary, recap, review for final HW4 class 11/20 Final on all material covered 2 8-Dec Final exam 11 am - 1 pm in SAL 101 in the semester

  4. Data Structures and Algorithms u A problem-solving view of computers and computing u Organizing information: sequences and trees u Organizing information: graphs u Abstract data types: recursion Reading: St. Amant Ch. 4 Ch. 8 (partial) 3

  5. Overview Problem s Low-level Low-level Low-level instructions instructions instructions Solution: Executions Algorithm s + managed by Data Structures Operating System Pseudocode CPU, Memory, Disk, I/O Compile Program Program to Program Program 4

  6. Sequences, Trees and Graphs u Sequence: a list u Graph v Items are called elements v Item number is called the index Jim u Tree Eric Mike Chris Emily Jane Bob Terry Bob 5

  7. Recursion: abstract data types Eric u Defining abstract data types in terms of themselves (e.g., trees contain trees) Emily Jane u So a tree is Either a single vertex, or Terry Bob a vertex that is the parent of one or more trees Drew Pam Kim 6

  8. Recursion: algorithms u Defining algorithms in terms of themselves (e.g., quicksort) Check whether the sequence has just one element. If it does, stop Check whether the sequence has two elements. If it does, and they are in the right order, stop. If they are in the wrong order, swap them, stop. Choose a pivot element and rearrange the sequence to put lower-valued elements on one side of the pivot, higher-valued elements on the other side Quicksort the lower elements Quicksort the higher elements 7

  9. Recursion: algorithms u How do you write a selection sort recursively ? u How do you write a breadth-first search of a tree recursively ? What about a depth-first search ? 8

  10. Analysis of algorithms u How long does an algorithm take to run? time complexity u How much memory does it need? space complexity 9

  11. Estimating running time u How to estimate algorithm running time? v Write a program that implements the algorithm, run it, and measure the time it takes v Analyze the algorithm (independent of programming language and type of computer) and calculate in a general way how much work it does to solve a problem of a given size u Which is better? 10

  12. Analysis of binary search u n = 8, the algorithm takes 3 steps u n = 32, the algorithm takes 5 steps u For a general n, the algorithm takes log 2 n steps 11

  13. Growth rates of functions u Linear u Quadratic u Exponential 12

  14. Big O notation u Characterize functions according to how fast they grow u The growth rate of a function is called the order of the function . (hence the O) u Big O notation usually only provides an upper bound on the growth rate of the function u Asymptotic growth f(x) = O(g(x)) as x -> ∞ if and only if there exists a positive number M such that f(x) ≤ M * g(x) for all x > x 0 13

  15. Examples u f(n) = 3n 2 + 70 u f(n) = n log n v We can write f(n) = O(n 2 ) v We can write f(n) = O(n log n) v What is a value for M? v Why? u f(n) = 100n 2 + 70 u f(n) = πn n v We can write f(n) = O(n 2 ) v We can write f(n) = O(n n ) v Why? v Why? u f(n) = (log n) 5 + n 5 u f(n) = 5n + 3n 5 u We can write f(n) = O(n 5 ) u We can write f(n) = O(n 5 ) u Why? u Why? 14

  16. Examples u f(n) = log a n and g(n) = log b n are both asymptotically O(log n) v The base doesn’t matter because log a n = log b n/log b a u f(n) = log a n and g(n) = log a (n c ) are both asymptotically O(log n) v Why? u f(n) = log a n and g(n) = log b (n c ) are both asymptotically O(log n) v Why? u What about f(n) = 2 n and g(n) = 3 n ? v Are they both of the same order? 15

  17. Conventions u O(1) denotes a function that is a constant v f(n) = 3 , g(n) = 100000 , h(n) = 4.7 are all said to be O(1) u For a function f(n) = n 2 it would be perfectly correct to call it O(n 2 ) or O(n 3 ) ( or for that matter O(n 100 )) u However by convention we call it by the smallest order namely O(n 2 ) 16

  18. Complexity u (Binary) search of a sorted list: O(log 2 n) u Selection sort u Quicksort u Breadth first traversal of a tree u Depth first traversal of a tree u Prim’s algorithm to find the MST of a graph u Kruskal’s algorithm to find the MST of a graph u Dijkstra’s algorithm to find the shortest path from a node in a graph to all other nodes 17

  19. Selection sort u Putting the smallest element in place requires scanning all n elements in the list (and n-1 comparisons) u Putting the second smallest element in place requires scanning n- 1 elements in the list (and n-2 comparisons) u … u Total number of comparisons is v (n-1) + (n-2) + (n-3) + … + 1 v n(n-1)/2 v O(n 2 ) u There is no difference between the best case, worst case and average case 18

  20. Quicksort u Best case: v Assume an ideal pivot v The average depth is O (log n ) v Each level of processes at most n elements v The total amount of work done on average is the product, O ( n log n ) u Worst case: v Each time the pivot splits the list into one element and the rest v So, (n-1) + (n-2) + (n-3) + … (1) v O ( n 2 ) u Average case: v O ( n log n ) [but proving it is a bit beyond CS 109] 19

  21. BF and DF traversals of a tree u A breadth first traversal visits the vertices of a tree level by level u A depth first traversal visit the vertices of a tree by going deep down one branch and exhausting it before popping up to visit another branch u What do they have in common? 20

  22. BF and DF traversals of a tree u A breadth first traversal visits the vertices of a tree level by level u A depth first traversal visit the vertices of a tree by going deep down one branch and exhausting it before popping up to visit another branch u What do they have in common? u Both visit all the vertices of a tree u If a tree has V vertices, then both BF and DF are O(V) 21

  23. Prim’s algorithm u Initialize a tree with a single vertex, chosen arbitrarily from the graph u Grow the tree by adding one vertex. Do this by adding the minimum-weight edge chosen from the edges that connect the tree to vertices not yet in the tree u Repeat until all vertices are in the tree u How fast it goes depends on how you store the vertices of the graph u If you don’t keep the vertices of the graph in some readily sorted order then the complexity is O(V 2 ) where the graph has V vertices 22

  24. Kruskal’s algorithm u Initialize a tree with a single edge of lowest weight u Add edges in increasing order of weight u If an edge causes a cycle, skip it and move on to the next highest weight edge u Repeat until all edges have been considered u Even without much thought on how the edges are stored (as long as we sort them once in the beginning), the complexity is O(E log E) where the graph has E edges 23

  25. Dijkstra’s algorithm u At each iteration we refine the distance estimate through a new vertex we’re currently considering u In a graph with V vertices, a loose bound is O(V 2 ) 24

  26. Reminders u Homework #2 due today u Quiz #2 later in lecture 25

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