Presentation is loading. Please wait.

Presentation is loading. Please wait.

Linked Lists1 Part-B3 Linked Lists. Linked Lists2 Singly Linked List (§ 4.4.1) A singly linked list is a concrete data structure consisting of a sequence.

Similar presentations


Presentation on theme: "Linked Lists1 Part-B3 Linked Lists. Linked Lists2 Singly Linked List (§ 4.4.1) A singly linked list is a concrete data structure consisting of a sequence."— Presentation transcript:

1 Linked Lists1 Part-B3 Linked Lists

2 Linked Lists2 Singly Linked List (§ 4.4.1) A singly linked list is a concrete data structure consisting of a sequence of nodes Each node stores element link to the next node next elem node ABCD 

3 Linked Lists3 The Node Class for List Nodes (the file is source/Node.java) public classNode{ // Instance variables: private Object element; private Node next; /** Creates a node with null references to its element and next node. */ public Node(){ this(null, null); } /** Creates a node with the given element and next node. */ public Node(Object e, Node n) { element = e; next = n; } // Accessor methods: public Object getElement() { return element; } public Node getNext() { return next; } // Modifier methods: public void setElement(Object newElem) { element = newElem; } public void setNext(Node newNext) { next = newNext; }

4 Linked Lists4 Inserting at the Head 1. Allocate a new node 2. update new element 3. Have new node point to old head 4. Update head to point to new node

5 Linked Lists5 Removing at the Head 1. Update head to point to next node in the list 2. Allow garbage collector to reclaim the former first node

6 Linked Lists6 Inserting at the Tail 1. Allocate a new node 2. Insert new element 3. Have new node point to null 4. Have old last node point to new node 5. Update tail to point to new node

7 Linked Lists7 Removing at the Tail Removing at the tail of a singly linked list is not efficient! There is no constant-time way to update the tail to point to the previous node The interface of data structure list is in List.java. The implementation is in NodeList.java. But it uses DNode.java. Actually, it is doubly linked list.

8 Linked Lists8 Stack with a Singly Linked List We can implement a stack with a singly linked list The top element is stored at the first node of the list The space used is O(n) and each operation of the Stack ADT takes O(1) time  t nodes elements

9 Linked Lists9 Queue with a Singly Linked List We can implement a queue with a singly linked list The front element is stored at the first node The rear element is stored at the last node The space used is O(n) and each operation of the Queue ADT takes O(1) time f r  nodes elements

10 Linked Lists10 List ADT (§ 5.2.3) The List ADT models a sequence of positions storing arbitrary objects It establishes a before/after relation between positions Generic methods: size(), isEmpty() Accessor methods: first(), last() prev(p), next(p) Update methods: replace(p, e) insertBefore(p, e), insertAfter(p, e), insertFirst(e), insertLast(e) remove(p)

11 Linked Lists11 Doubly Linked List A doubly linked list provides a natural implementation of the List ADT Nodes implement Position and store: element link to the previous node link to the next node Special trailer and header nodes prevnext elem trailer header nodes/positions elements node

12 Linked Lists12 Insertion We visualize operation insertAfter(p, X), which returns position q ABXC ABC p ABC p X q pq

13 Linked Lists13 Insertion Algorithm Algorithm insertAfter(p,e): Create a new node v v.setElement(e) v.setPrev(p){link v to its predecessor} v.setNext(p.getNext()){link v to its successor} (p.getNext()).setPrev(v){link p’s old successor to v} p.setNext(v){link p to its new successor, v} return v{the position for the element e}

14 Linked Lists14 Deletion We visualize remove(p), where p = last() ABCD p ABC D p ABC

15 Linked Lists15 Deletion Algorithm Algorithm remove(p): t = p.element{a temporary variable to hold the return value} (p.getPrev()).setNext(p.getNext()){linking out p} (p.getNext()).setPrev(p.getPrev()) p.setPrev(null){invalidating the position p} p.setNext(null) return t

16 Linked Lists16 Performance In the implementation of the List ADT by means of a doubly linked list The space used by a list with n elements is O(n) The space used by each position of the list is O(1) All the operations of the List ADT run in O(1) time Operation element() of the Position ADT runs in O(1) time

17 Linked Lists17 Terminologies A Graph G=(V,E): V---set of vertices and E--set of edges. Path in G: sequence v 1, v 2,..., v k of vertices in V such that (v i, v i+1 ) is in E. v i and v j could be the same Simple path in G: a sequence v 1, v 2,..., v k of distinct vertices in V such that (v i, v i+1 ) is in E. v i and v j can not be the same

18 Linked Lists18 Example: Simple path A path, but not simple

19 Linked Lists19 Terminologies (continued) Circuit: A path v 1, v 2,..., v k such that v 1 = v k. Simple circuit: a circuit v 1, v 2,..., v k, where v 1 =v k and v i  v j for any 1<i, j<k.

20 Linked Lists20 Euler circuit Input: a graph G=(V, E) Problem: is there a circuit in G that uses each edge exactly once. Note: G can have multiple edges,.i.e., two or more edges connect vertices u and v.

21 Linked Lists21 Story: The problem is called Konigsberg bridge problem it asks if it is possible to take a walk in the town shown in Figure 1 (a) crossing each bridge exactly once and returning home. solved by Leonhard Euler [pronounced OIL-er] (1736) The first problem solved by using graph theory A graph is constructed to describe the town. (See Figure 1 (b).)

22 Linked Lists22 The original Konigsberg bridge (Figure 1)

23 Linked Lists23 Theorem for Euler circuit (proof is not required) Theorem 1 (Euler ’ s Theorem) The graph has an Euler circuit if and only if all the vertices of a connected graph have even degree. Proof: (if) Going through the circuit, each time a vertex is visited, the degree is increased by 2. Thus, the degree of each vertex is even.

24 Linked Lists24 Proof of Theorem 1: (only if) We give way to find an Euler circuit for a graph in which every vertex has an even degree.  Since each node v has even degree, when we first enter v, there is an unused edge that can be used to get out v.  The only exception is when v is a starting node.  Then we get a circuit (may not contain all edges in G)  If every node in the circuit has no unused edge, all the edges in G have been used since G is connected.  Otherwise, we can construct another circuit, merge the two circuits and get a larger circuit.  In this way, every edge in G can be used.

25 Linked Lists25 An example for Theorem 1: after merge f a d b g h j i c e 1 4 3 2 8 7 65 10 9 12 11 13 ab c 1 32 d f e b 4 7 6 5 d f e ab c 1 5 4 3 2 76 g h j i c e 12 13 8 9 10 11

26 Linked Lists26 An efficient algorithm for Euler circuit 1. Starting with any vertex u in G, take an unused edge (u,v) (if there is any) incident to u 2. Do Step 1 for v and continue the process until v has no unused edge. (a circuit C is obtained) 3. If every node in C has no unused edge, stop. 4. Otherwise, select a vertex, say, u in C, with some unused edge incident to u and do Steps 1 and 2 until another circuit is obtained. 5. Merge the two circuits obtained to form one circuit 6. Continue the above process until every edge in G is used.

27 Linked Lists27 Euler Path  A path which contains all edges in a graph G is called an Euler path of G. Corollary: A graph G=(V,E) which has an Euler path has 2 vertices of odd degree.

28 Linked Lists28 Proof of the Corollary  Suppose that a graph which has an Euler path starting at u and ending at v, where u  v.  Creating a new edge e joining u and v, we have an Euler circuit for the new graph G ’ =(V, E  {e}).  From Theorem 1, all the vertices in G ’ have even degree. Remove e.  Then u and v are the only vertices of odd degree in G. (Nice argument, not required for exam.)

29 Linked Lists29 Representations of Graphs  Two standard ways  Adjacency-list representation  Space required O(|E|)  Adjacency-matrix representation  Space required O(n 2 ).  Depending on problems, both representations are useful.

30 Linked Lists30 Adjacency-list representation  Let G=(V, E) be a graph.  V – set of nodes (vertices)  E – set of edges.  For each u  V, the adjacency list Adj[u] contains all nodes in V that are adjacent to u. 2 1 54 3 2 1 2 2 4 5/ 5 4/ 5 1 34/ 2/ 3/ 1 2 3 4 5 (a)(b)

31 Linked Lists31 Adjacency-matrix representation  Assume that the nodes are numbered 1, 2, …, n.  The adjacency-matrix consists of a |V|  |V| matrix A=(a ij ) such that a ij = 1 if (i,j)  E, otherwise a ij = 0. 2 1 54 3 (a) 0 1 0 0 1 1 0 1 1 1 0 1 0 1 0 0 1 1 0 1 1 1 0 1 0 1 2 3 4 5 1234512345 (c)

32 Linked Lists32 Implementation of Euler circuit algorithm (Not required)  Data structures:  Adjacency matrix  Also, we have two lists to store the circuits  One for the circuit produced in Steps 1-2.  One for the circuit produced in Step 4  We can merge the two lists in O(n) time. In Step 1: when we take an unused edge (u, v), this edge is deleted from the adjacency matrix.

33 Linked Lists33 Implementation of Euler circuit algorithm In Step 2: if all cells in the column and row of v is 0, v has no unused edge. 1. Testing whether v has no unused edge. 2. A circuit (may not contain all edges) is obtained if the above condition is true. In Step 3: if all the element ’ s in the matrix are 0, stop. In step 4: if some elements in the matrix is not 0, continue.

34 Linked Lists34 Summary of Euler circuit algorithm  Design a good algorithm needs two parts 1. Theorem, high level part 2. Implementation: low level part. Data structures are important.  We will emphasize both parts.

35 Linked Lists35 Summary (Subject to change)  Understand singly linked list  How to create a list  insert at head, insert at tail, remove at head and remove at tail.  Should be able to write program using singly linked list  We will have chance to practice this.  Know the concept of doubly linked list.  No time to write program about this.  Euler Circuit  Understand the ideas  No need for the implementation.

36 Linked Lists36 My Questions: (not part of the lecture)  Have you learn recursive call?  A function can call itself.. Example: f(n)=n!=n×(n-1)×(n-2)×…×2×1 and 0!=1. It can also be written as f(n)=n×f(n-1) and f(0)=1. Java code: Public static int recursiveFactorial(int n) { if (n==0) return 1; else return n*recursiveFactorial(n-1); }

37 Linked Lists37 Remks  Delete Euler Circuit  They do not like programming, especially, complicated programming work.


Download ppt "Linked Lists1 Part-B3 Linked Lists. Linked Lists2 Singly Linked List (§ 4.4.1) A singly linked list is a concrete data structure consisting of a sequence."

Similar presentations


Ads by Google