Presentation is loading. Please wait.

Presentation is loading. Please wait.

Graphs Arrays Iteration Combining Data Structures.

Similar presentations


Presentation on theme: "Graphs Arrays Iteration Combining Data Structures."— Presentation transcript:

1 Graphs Arrays Iteration Combining Data Structures

2 Graphs

3 The Scenario Imagine we need to represent a highway system within our algorithm. Atlanta Chattanooga Tampa Birmingham Greenville

4 Which Data Structure? Arrays are fixed in size and linear Lists are dynamic and linear Trees are dynamic and hierarchical We need a non-linear structure which connects nodes to other nodes.

5 Graphs Set of nodes and connecting edges.

6 Nodes and Edges B F C A E G D

7 B F C A E G D Nodes are also called vertices.

8 Nodes and Edges B F C A E G D Edges connect nodes.

9 Undirected Graphs B F C A E G D

10 Directed Graphs B F C A E G D Directed edges only allow movement in one direction.

11 Weighted Edges B F C A E G D 5 3 2 1 4 7 1 2 3 9 12 Edge weights represent cost.

12 Directed Graphs Can be Weighted Too B F C A E G D 5 3 2 1 4 7 1 2 3 9 12

13 Trees and Lists are Graphs Trees and lists are examples of graphs We’ll use the term graph for situations –that don’t have the implied restrictions –i.e. non hierarchical (many-to-many) \\

14 Representing Graphs How do we represent a node that has any number of children or connections?

15 What’s in a Node? Data + \\ Edges (perhaps with weights)

16 A Low-level Diagram children data children data children data children datanext_child this_child next_child this_child next_child this_child...

17 Another View Node 1 Children Node 2 Children Node 3 Children Node 4 Children Node 2Node 3Node 4Node 1Node 2 Node 3 1 2 4 3 This represents a pointer to node 3 LB

18 Representing Non-binary Trees and Graphs Tree_Node definesa Record data isoftype String children isoftype Ptr toa Child_List_Node endrecord //Tree_Node Child_List_Node definesa Record this_child isoftype Ptr toa Tree_Node next_child isoftype Ptr toa Child_List_Node endrecord //Child_List_Node

19 Summary Graphs are a collection of edges and nodes –Non-hierarchical and non-linear –Edges can be weighted or unweighted –Edges can be directed or undirected Graphs allow a “many to many” relationship between nodes.

20 Questions?

21 Arrays

22 The Scenario We need a data structure to hold information. We know ahead of time how many items we need to hold. All of the items are of the same type. We need fast access to each element in the collection.

23 Properties of Arrays Linear data structure Homogeneous collection –All entries are of the same type Static and cannot grow or shrink Allow random access –Like a CD player (vs. a tape player)

24 Terms A cell or element represents one item in an array. The index of a cell represents its location within the array.

25 Visually Representing Arrays A cell at the fourth index. 1 2 3 4 5 6 7 8 9 10

26 Defining Arrays Like a record definition, we define a new data type: MAX is 10 NumArrayType definesa Array [1..MAX] of Num Constant size Type name Bounds/Range Cell type LB

27 Declaring an Array Variable Like declaring any other variable: MyNumArray isoftype NumArrayType Type nameVariable name LB

28 Accessing an Element in an Array Use brackets “[ ]” and specify an index value within the bounds: MyNumArray[4] <- 42 An array A number 42 1 2 3 4 5 6 7 8 9 10

29 Multi-Dimension Arrays 2-D 3-D 1 2 3 4 5 6 1234512345 1 2 3 1234512345 1 2 3 4 5 6 7 8 9 10 4-D & beyond can do, but visually ???

30 Defining A Two-Dimensional Array COLS is 10 ROWS is 5 NumArrayType definesa Array [1..COLS] of Num 2DNumArrayType definesa Array [1..ROWS] of NumArrayType - or – 2DNumArrayType definesa Array [1..ROWS][1..COLS] of Num

31 Accessing Elements in a 2-D Array Row Column 1234512345 1 2 3 4 5 6 7 8 9 10 My2DNumArray My2DNumArray isoftype 2DNumArrayType

32 Accessing Elements in a 2-D Array Row Column 1234512345 1 2 3 4 5 6 7 8 9 10 My2DNumArray

33 Accessing Elements in a 2-D Array Row Column 1234512345 1 2 3 4 5 6 7 8 9 10 My2DNumArray My2DNumArray[3]

34 Accessing Elements in a 2-D Array Row Column 31 1234512345 1 2 3 4 5 6 7 8 9 10 My2DNumArray My2DNumArray[3][8] <- 31 - or – My2DNumArray[3,8] <- 31 LB

35 Using Bounds Correctly 31.. [3][8] [8][3] (out of bounds) 1 2 3 4 5 6 7 8 9 10 1234512345 Row Column

36 Summary Arrays –Are homogeneous collections –Are fixed in size –Are a linear data structure –Allow random, immediate access to elements

37 Questions?

38 Iteration

39 An Example: Golf 1. Go to the golf course. 2. Practice hitting balls on the driving range. 3. Go to the first hole. 4. Tee off. 5. Hit ball closer to hole until it goes in. 6. Move to next hole. 7. If you haven’t played all 18 holes, then repeat steps 4-7. 8. Turn in scorecard to the pro shop.

40 The Scenario We need a way to repeat instructions Recursion allows this via module calls, But what about another solution… We’ll use iteration to achieve repetition –Need some way of marking which instructions to repeat –Need some way to determine when to stop repeating

41 Three Properties of Repetition Need some way of repeating (or starting the instructions again) Need to know when to stop repeating (when finished) Need to do some work and move closer to being finished

42 Back to the Golf Course Go to the golf course Practice hitting balls on the driving range hole <- 1 loop Tee off Hit ball closer to hole until it goes in hole <- hole + 1 // move closer exitif (hole > 18) // terminating condition endloop Turn in scorecard to the pro shop

43 Not Always a Hole in One!... hole <- 1 loop Tee off loop exitif (ball in hole) hit ball closer to hole endloop hole <- hole + 1 exitif (hole > 18) endloop...

44 Iteration Allows for the repetition of instructions. loop begins the iteration. exitif( ) provides a terminating condition; when the conditional expression is true, then execution jumps to the algorithm step after endloop and continues. endloop ends the iteration section.

45 The Loop Construct i, sum isoftype num sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) // prints 55

46 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 10

47 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 11

48 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 21

49 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 21

50 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 21

51 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 23

52 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 33

53 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 33

54 Time Passes...

55 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 33

56 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 36

57 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 46

58 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 46

59 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 46

60 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 410

61 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 510

62 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 510

63 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 510

64 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 515

65 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 615

66 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 615

67 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 615

68 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 621

69 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 721

70 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 721

71 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 721

72 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 728

73 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 828

74 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 828

75 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 828

76 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 836

77 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 936

78 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 936

79 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 936

80 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 945

81 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 1045

82 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 1045

83 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 1045

84 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 1055

85 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 1155

86 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 1155

87 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 1155

88 Tracing the Loop’s Behavior i sum sum <- 0 // initialize i <- 1 // initialize loop exitif (i > 10) sum <- sum + i // work i <- i + 1 // increment endloop print(sum) 1155

89 Items to Consider with Loops Initialize values Determine exitif conditional and placement Perform work Increment counter (if needed)

90 An Iterative List Traversal Example Given some linked list of numbers, double each element in the list We’ll do this iteratively: –Work to be done is the doubling of the elements –Stop when we reach the end of the list

91 Traversing the List Iteratively repeat until we reach nil. 4817142 ListHead // 9634 284

92 Start With a Framework loop ??? exitif(???) ??? endloop

93 Initialize current isoftype ptr toa Node current <- ListHead // from elsewhere loop ??? exitif(???) ??? endloop

94 Do the Work current isoftype ptr toa Node current <- ListHead // from elsewhere loop current^.data <- current^.data * 2 exitif(???) ??? endloop

95 Move Closer to the End current isoftype ptr toa Node current <- ListHead // from elsewhere loop current^.data <- current^.data * 2 current <- current^.next exitif(???) ??? endloop

96 When Can We Finish? current isoftype ptr toa Node current <- ListHead // from elsewhere loop current^.data <- current^.data * 2 current <- current^.next exitif(current = nil) ??? endloop

97 But There’s a Problem! current isoftype ptr toa Node current <- ListHead // from elsewhere loop current^.data <- current^.data * 2 current <- current^.next exitif(current = nil) endloop

98 What If the List is Empty? current isoftype ptr toa Node current <- ListHead // from elsewhere loop exitif(current = nil) current^.data <- current^.data * 2 current <- current^.next endloop

99 Sentinel Loops A “sentinel” is a guard, so a sentinel loop is one in which the loop is “guarded.” Loops which have the exitif as the first line in the loop body. The loop may execute 0 or more times. loop exitif( ) endloop

100 A Simplified Teaching Example Imagine a classroom of 2 nd graders. We want to teach them multiplication. Jon’s wife’s process is: 1. Give them some instructions 2. Let them practice 3. Grade their work 4. Repeat steps 1-3 until they know how to multiply LB

101 Start With a Framework loop ??? exitif(???) ??? endloop

102 What Work Must We Do? loop teach class let students practice grade their work exitif(???) ??? endloop

103 When Can We Finish? loop teach class let students practice grade their work exitif(students know how to multiply) endloop

104 Test-Last Loops Loops which have the exitif as the last line in the loop body. The loop executes at least once. loop exitif( ) endloop Typically used when This Is generated in here LB

105 A Sample Problem Design a system that Presents a menu to the user Reads in the user’s choice Processes the user’s choice Until the user types “quit”

106 Start With a Framework loop ??? exitif(???) ??? endloop

107 What Must We Do? choice isoftype string loop Print_Menu() // displays menu read(choice) // reads user’s choice exitif(???) ??? endloop

108 When Can We Finish? choice isoftype string loop Print_Menu() // displays menu read(choice) // reads user’s choice exitif(choice = “quit”) ??? endloop

109 What Else – Do Work! choice isoftype string loop Print_Menu() // displays menu read(choice) // reads user’s choice exitif(choice = “quit”) Process_Choice(choice) endloop

110 N-and-a-Half Loops Loops which have the exitif in the middle of other instructions in the loop body. The “before statements” will execute one more time than the “after statements”. loop exitif( ) endloop

111 Placement of the Exitif Statement The exitif conditional statement can be placed anywhere in the loop: –At the beginning, before instructions –At the end, after all instructions –In the middle of instructions Often, changing the placement of the exitif conditional alters the number of iterations performed.

112 Sisyphus’ Infinite Loop Make sure that your exitif conditions are correctly placed and will be true! loop select a rock roll the rock uphill exitif(no more rocks below) go back downhill endloop

113 Summary Iteration allows us to repeat instructions until some exit criteria is met. We have choice in the placement of the exit condition: –At the front (sentinel) –At the end (test last) –In the middle (N-and-a-half) Be sure to trace your loops and test to see they exit correctly.

114 Questions?

115 Combining Data Structures

116 Basic Data Structures Some basic data structures: –Linked List –Binary Tree –Array But we can combine these as needed.

117 A Linked List of Arrays …

118 A Linked List of Arrays Defined MAX is 150 NumArray definesa array [1..MAX] of num Node definesa record data isoftype NumArray next isoftype ptr toa Node endrecord

119 An Array of Linked Lists

120 An Array of Linked Lists Defined MAX is 150 Node definesa record data isoftype Char next isoftype ptr toa Node endrecord ListArray definesa array [1..MAX] of ptr toa Node

121 Other Possibilities A Binary Search Tree of Sorted Arrays of Unsorted Linked Lists An Array of Linked Lists of Linked Lists A Linked List of Trees of Arrays Etc.

122 Questions?

123


Download ppt "Graphs Arrays Iteration Combining Data Structures."

Similar presentations


Ads by Google