Atmiya Infotech Pvt. Ltd. Data Structure. By Ajay Raiyani. Yogidham, Kalawad Road, Rajkot. Ph : ,

Size: px
Start display at page:

Download "Atmiya Infotech Pvt. Ltd. Data Structure. By Ajay Raiyani. Yogidham, Kalawad Road, Rajkot. Ph : 572365, 576681 1"

Transcription

1 Data Structure By Ajay Raiyani Yogidham, Kalawad Road, Rajkot. Ph : ,

2 Linked List 4 Singly Linked List...4 Doubly Linked List...7 Explain Doubly Linked list: Circular Singly Linked List...12 Order Linked List:...16 Application of Linked list:...17 Graphical Representation of Linked List...19 Graphical Representation of Doubly Linked List...22 Graphical Representation of Circular Linked List...26 Stack Application of the stack:...30 Algorithm for push operation...32 Operation: POP I from the stack...33 Operation: PEEP 2nd element from the stack Queue What is queue?...36 Implementation of Queue:...36 Algorithm for simple queue: Insert function: Delete Function Print function Search Function Update function Circular Queue...41 Advantages of circular queue over simple queue Disadvantages of Circular queue Algorithm for Circular Queue: Insert function: Delete Function: Print Function: Application of Queue:...44 Tree Definition: Explain Tree: Binary Tree: Representation OR Implementation of Binary Tree Operation Of Binary Tree Algorithm for preorder: Inorder: Algorithm For Inorder Traversal of Binary Tree: Postorder Traversal: Yogidham, Kalawad Road, Rajkot. Ph : ,

3 Algorithm for Postorder Traversal of Binary Tree. : Application of Binary Tree: Graphs Yogidham, Kalawad Road, Rajkot. Ph : ,

4 Linked List Singly Linked List Explain Singly Linked list: - Ans. A singly linked list is a linked list in which each node contains only one link field pointing the next node in the list. Each node is divided in two parts. 1. Information part. 2. Contains address of next node. For Example: - Head NULL Head = Pointer Variable Points to first element (node) of in the list. NULL=It indicates the end of the list. 1. Algorithm for the Creation of the Simple Linked List Function CREATE(X, FIRST) [Given X, a new element, and FISRT, a pointer to the first element of a Linked linear list whose typical node contains INFO and LINK fields as in above fig, this function inserts X.] 1. [Repeat thru step 5] Repeat while Choice! = n Yogidham, Kalawad Road, Rajkot. Ph : ,

5 2. [Allocate the New node] NEW NODE 3. [Initialize the fields of new node] INFO (NEW) = X LINK (FIRST) = NEW 4. [Want to insert another node] Read (Choice) 5. [Set the LINK field of Last inserted element] LINK (FIRST) = NULL 6. [Finished] Return 2. Algorithm for the Inserting the element in the Simple Linked List Function INSERT (TEMPHEAD,KEY) [This Function Insert the element after the node, which have the information field equal to the X. And HEAD is the pointer variable, which points to the first element of the list] 1. [Allocate the Memory for the NEW node] NEW NODE 2. [Set fields of the NEW node] INFO (NEW) = X LINK (NEW) = NULL 3. [Insertion as the first node] LINK (NEW) = TEMPHEAD TEMPHEAD = NEW Return (HEAD) 4. [Save the address of the first element of the list] SAVE = TEMPHEAD 5. [Find the element after which we want to insert the element] Repeat while INFO (LINK (SAVE) )!= NULL 6. [Insert the element] LINK (NEW) = LINK (SAVE) LINK (SAVE) = NEW 7. [Return the address of the first element] Return (TEMPHEAD) Yogidham, Kalawad Road, Rajkot. Ph : ,

6 3. Algorithm for the delete the element from the list Function DEL (TEMPHEAD, KEY) [This Function Delete the Node whose information fields equals to the KEY. And TEMPHEAD is the pointer which points the first element of the list and function returns the address of the first node] 1. [Check for the empty list] If TEMPHEAD = NULL Then write ( Empty List ) 2. [Deletion of the first node] SAVE = TEMPHEAD TEMPHEAD = LINK (TEMPHEAD) Free (SAVE) Return (TEMPHEAD) 3. [Save the address of the first node of the list] SAVE = TEMPHEAD 4. [Find the Node which to be deleted] Repeat while INFO (LINK (SAVE))! = KEY 5. [Delete the node] TEMP = LINK (SAVE) LINK (SAVE) = LINK (LINK (SAVE)) Free (TEMP) 6. [Finished] Return (TEMPHEAD) 4. Algorithm for the print the list Procedure PRINT (HEAD) [This Procedure print the information field of the list and HEAD is the first element of the list] 1. [Repeat step thru] Repeat while LINK (HEAD)!= NULL 2. [Print the Information] Write (INFO (HEAD)) 3. [Finished] Return Yogidham, Kalawad Road, Rajkot. Ph : ,

7 Doubly Linked List Explain Doubly Linked list Ans. The Linked list in which each node has two pointers, one to store address of forward link & second to store address of backward link, is called Doubly Linked list. The Backward link for point out left most node. & The forward link for point out right most node. Reason for use of doubly linked list. OR Disadvantages of Singly linked list. Ans. Suppose we have singly linked list in which we want to insert a node A pointed to by POINT 1 just before A node B pointed to by POINT 2. We can change the link field of A to point out B, but we don t know the address of the node preceding B. Therefore this required time consuming sequential searching in singly linked list & this is In-efficient. To avoid this problem we used doubly linked list. Representation: Generally, doubly linked list is represented as shown below. Head NULL Backward Address Forward Address NULL: - It indicates the end Each node having three fields. 1. Pointer to previous node. 2. Information field. 3. Pointer to next node. of the list in each direction. Yogidham, Kalawad Road, Rajkot. Ph : ,

8 Advantage: - Inserting node in to or Deleting one node from the list is much easier task because we don t have to search the list sequentially to locate the preceding node. Algorithm for the Creation of the Doubly linked list Procedure CRETE(TEMPHEAD) [This Procedure Create the Doubly linked list TEMPHEAD is the pointer variable which point to the first element of the list and LPTR and RPTR is the pointer field of the NODE which points the Previous and new Node of the list respectively.] 1. [Repeat thru step] Repeat while choice! = n 2. [Allocate the new Node] NEW NODE 3. [Set field of new Node] INFO (NEW) = X LPTR (NEW) = RPTR (RPTR) = NULL 4. [Insert the element] RPTR (TEMPHEAD) = NEW LPTR (RPTR (TEMPHEAD)) = TEMPHEAD TEMPHEAD = RPTR (TEMPHEAD) 5. [Read the Choice] Read (choice) 6. [Finished] Return Yogidham, Kalawad Road, Rajkot. Ph : ,

9 Insertion in the middle of a doubly linked list A Left-most insertion in a doubly linked list Algorithm for the insert an element in the doubly list Function INSERT (TEMPHEAD, KEY) Yogidham, Kalawad Road, Rajkot. Ph : ,

10 [This Function inserts an element after the node which the info filed equals to the KEY and the returns the address of the first node] 1. [Allocate the memory for the new node] NEW NODE INFO (NEW) = X 2. [Insertion as the first node] RPTR (NEW) = TEMPHEAD LPTR (NEW) = NULL RPTR (TEMPHEAD) = NEW TEMPHEAD = NEW Return (TEMPHEAD) 3. [Save address of the first node] SAVE = TEMPHEAD 4. [Find the element after which we want to insert the element] Repeat thru step while RPTR (SAVE)! = NULL 5. [Check for the desire position] If INFO (RPTR (SAVE)) = KEY Then RPTR (NEW) = RPTR (SAVE) LPTR (NEW) = SAVE LPTR (RPTR (SAVE)) = NEW RPTR (SAVE) = NEW 6. [Finished] Return (TEMPHEAD) Algorithm for the deleting an element from the doubly linked list Function DELETE (TEMPHEAD, KEY) [This Function delete an element from the doubly list and returns the address of the first element TEMPHEAD is pointer which points the first element of the list and KEY specify info of the node which is to be deleted] 1. [Check for the empty list] If TEMPHEAD = NULL Then write ( Empty list ) Return 2. [Deletion of the first node] TEMP = TEMPHEAD Yogidham, Kalawad Road, Rajkot. Ph : ,

11 RPTR (TEMPHEAD) = TEMPHEAD PRV (TEMPHEAD) = NULL Free (TEMP) Return (TEMPHEAD) 3. [Save the address of the first node] SAVE = TEMPHEAD 4. [Search for the desire node] Repeat while thru step 5 RPTR (SAVE)! = NULL 5. [Check for the information field] If INFO (RPTR (SAVE)) = KEY Then TEMP = RPTR (SAVE) RPTR (SAVE) = RPTR (RPTR (SAVE)) LPTR (RPTR (SAVE)) = SAVE Free (TEMP) 6. [Finished] Return (TEMPHEAD) Algorithm for the print the doubly list Procedure PRINT (TEMPHEAD) [This procedure print the element of the node in the LIFO and FIFO format and TEMPHEAD points the first element of the list] 1. [Check for the empty list] If TEMPHEAD = NULL Then write ( Empty list ) Return 2. [First in first out] Repeat while RPTR (TEMPHEAD)! = NULL Write (INOF (TEMPHEAD)) 3. [Last in first out] Repeat while TEMPHEAD! = NULL Write (INFO (TEMPHEAD)) 4. [Finished] Return Yogidham, Kalawad Road, Rajkot. Ph : ,

12 Circular Singly Linked List Explain Singly Circular Linked List: Ans. A singly circular linked list is a linked list in which the last node of the list point to the first node in the list. In Circular linked list, we can start at any node in the list & travel the whole list. For this reason we can make our external pointer to the list pointer to any node & still access all the node in the list. Representation of Circular Linked list: Head Head Advantage of Circular List over Singly linked list. Ans. 1. It is concerned with the accessibility of a node. 2. In Circular list every node is accessible from given node. i.e.: - Yogidham, Kalawad Road, Rajkot. Ph : ,

13 From this given node all nodes can be reached by many changing through the list. 3. It concerns the deletion operation. In singly linked list to delete desired node, it is necessary to give the address of first node of the list. 4. This necessity result from the fact that in order to delete desired node. The predecessor of this node has to be found. 5. To find the predecessor required that a search could be carried out by changing through node from the first node of the list such requirement doesn t exist for circular list. Disadvantage: Ans. It is possible that without some care in processing, it is possible to get in to an infinite loop. Solution of Disadvantage: Ans. In processing a circular list, it is important that we are able to delete the end of list. This deletion of end is achieved by placing special node, which can be easily identified in the circular list. This special node is often called the list head of the circular list. Representation of circular list with list head is given as in following figure. Head Algorithm for the Creation of the Circular list Procedure CREATE (TEMPHEAD) [This procedure creates the circular list and TEMPHEAD is the pointer variable which points the first element of the list] 1. [Save the address of the first element] SAVE = TEMPHEAD 2. [Repeat thru step 5] Repeat while Choice! = n Yogidham, Kalawad Road, Rajkot. Ph : ,

14 3. [Allocate the New node] NEW NODE 4. [Initialize the fields of new node] INFO (NEW) = X LINK (SAVE) = NEW SAVE = NEW 5. [Want to insert another node] Read (Choice) 6. [Set the LINK field of Last inserted element] LINK (SAVE) = TEMPHEAD 7. [Finished] Return Algorithm for the insertion of the node in the circular list Function INSERT (TEMPHEAD, KEY) [This Function inserts an element after the node which have the info field equal to the KEY variable and TEMPHEAD is the pointer which points the first element of the list and SAVE is the temp variable for the store address of the first element] 1. [Allocate the Memory for the NEW node] NEW NODE 2. [Set fields of the NEW node] INFO (NEW) = X LINK (NEW) = NULL 3. [Save address of the first node] FIRST = TEMPHEAD 4. [Insertion as first node and find last element of the list] Repeat while LINK (TEMPHEAD)! = NULL 5. [Insert the node] LINK (TEMPHEAD) = NEW LINK (NEW) = FIRST FIRST = NEW Return (FIRST) 6. [Insert in the list other than the first node] Repeat while INFO (LINK (TEMPHEAD)) = KEY 7. [Set the link for the NEW node] Yogidham, Kalawad Road, Rajkot. Ph : ,

15 LINK (NEW) = LINK (TEMPHEAD) LINK (TEMPHEAD) = NEW 8. [Finished] Return (FIRST) Algorithm for the Deletion an element from the circular list Function DELETE (TEMPHEAD, KEY) [This Function deletes an element from the circular list] 1. [Check for the empty list] If TEMPHEAD = NULL Then write ( Empty List ) 2. [List contain Single node] if LINK (TEMPHEAD) = TEMPHEAD Return NULL Free (TEMPHEAD) 3. [Save the address of the first node] FIRST = TEMPHEAD 4. [Deletion of the first node] Repeat while LINK (TEMPHEAD)! =NULL 5. [Delete the node] LINK (TEMPHEAD) = LINK (FIRST) LINK (FIRST) = FIRST Return (FIRST) 6. [Finding desire node] Repeat while INFO (LINK (TEMPHEAD)) = KEY 7. [Deletes the node] TEMP = LINK (TEMPHEAD) LINK (TEMPHEAD) = LINK (LINK (TEMPHEAD)) Free (TEMP) 8. [Finished] Return (FIRST) Algorithm for the printing the element of the circular list Procedure PRINT (TEMPHEAD) 1. [Check for the empty list] Yogidham, Kalawad Road, Rajkot. Ph : ,

16 If TEMPHEAD = NULL Then write ( Empty list ) Return 2. [Print the desire node] Repeat while LINK (TEMPHEAD)! = TEMPHEAD Write (INFO (TEMPHEAD)) 3. [Finished] Return Order Linked List: Trace of the construction of an ordered linked linear list using Function INSORD Algorithm: Function INSORD (TEMPHEAD, X) [This function inserts an element in the list which sorted to its info fields and X is the info field of the new node] 1. [Allocate Memory for the new node] NEW = NODE 2. [Copy the information field of the new node] INOF (NEW) = X 3. [Is the list empty?] Yogidham, Kalawad Road, Rajkot. Ph : ,

17 If TEMHEAD = NULL Then LINK (NEW) = NULL Return (NEW) 4. [Does the new node precede all other node in the list?] If INFO (NEW) <= INFO (TEMPHEAD) Then LINK (NEW) = TEMPHEAD Return (NEW) 5. [Save the address of the first node] FIRST = TEMPHEAD 6. [Search the predecessor of the new node] Repeat while LINK (TEMPHEAD)! = NULL and INFO (LINK (TEMPHEAD)) <= INFO (NEW) - TEMPHEAD = LINK (TEMPHEAD) 7. [Set link fields of the new node] LINK (TEMPHEAD) = LINK (NEW) LINK (SAVE) = NEW 8. [Return first node pointer] Return (FIRST). Application of Linked list: Ans. There are no of applications of linear linked list, many examples could be given but only a few will be described here, 1. In Line Editor: - One interesting use of linked list is line editor. We can keep a linked list of line nodes. Each containing line number, a line of Text & a pointer to next line information node. 2. In String Manipulation: - Variable string length can also be represented as linked list. A string may be declared as a record that contains a string count & a pointer to the linked list of character. Circular manipulation is very simple with this string implementation. In one simple representation, each character node contains a string character & a pointer to the next character node. With this Yogidham, Kalawad Road, Rajkot. Ph : ,

18 representation much more space is used for the pointer and for the character. If space is limited, each node can contain several character, as well as pointer to next node. This representation saves space at the cost of increasing the complexity of the algorithm that manipulate the character in the string. 3. In Implementation of Sparse matrix: - A sparse matrix is a table which relatively with few non-zeros elements. 4. In Operating System: - The allocation of memory space may be managed doubly linked list of various size block of memory. In multi-user system the operating system may keep track of user jobs waiting to execute through linked queue of control block. 5. Implementing stack & queue: - It is easy to implement stack & queue operation using linked list rather than array implementation of stack & queue. 6. In Polynomial Manipulation: - A linked list uses as a typical term of polynomial. The common operation performs on polynomial are addition, subtraction, multiplication, division, integration & differentiation. 7. Linked Dictionary: - An important part of any compiler is the construction & maintenance of a dictionary containing name & their associated values, such dictionary is also called a symbol table. 8. Another application, which is closely related to polynomial equation, is performing operation to same arbitrary precision. What do you mean by dummy header? Ans. A Dummy header node is the list before the first actual data node can often contain useful information about the structure. Yogidham, Kalawad Road, Rajkot. Ph : ,

19 For Example: - No of Node. A query Algorithm can then determines the status of list by examine the contents of the PREFIRST node. This amount to adding node more node to the list. Head Addition & Deletion from list required changing this informationkeeping field in the dummy header node of the list. If the list become empty & Dummy header node is not used then the HEAD pointer for the list must be made NULL. But if the dummy header node is present, then the HEAD pointer not need to be changed to NULL, because it always points to this dummy header. Graphical Representation of Linked List Top 2000 Address of a node 20 Data of a node 3000 Address of next node Yogidham, Kalawad Road, Rajkot. Ph : ,

20 NULL Insertion into a linked list 1. Insertion as a first node Before insertion newnode NULL After Insertion Head newnode NULL 2. Insertion at a desired position Before Insertion Head NULL newnode Yogidham, Kalawad Road, Rajkot. Ph : ,

21 After Insertion NULL newnode Append a node in a linked list Before Append NULL After Appending newnode NULL Deletion from a Linked List Deletion of a first node newnode NULL Yogidham, Kalawad Road, Rajkot. Ph : ,

22 Before Deletion NULL After Deletion NULL Deletion of a desired node Before deletion NULL After deletion NULL Graphical Representation of Doubly Linked List Top 4000 Address of a node 5000 Address of previous node 40 Data of a node 5000 Address of next node Yogidham, Kalawad Road, Rajkot. Ph : ,

23 1000 NULL NULL Insertion into a doubly linked list As a first node Before Insertion 1000 NULL newnode NULL After Insertion newnode NULL NULL Append a node to doubly linked list Before Append 1000 NULL Yogidham, Kalawad Road, Rajkot. Ph : ,

24 NULL 8000 NewNode NULL After Append 1000 NULL NewNode NULL Deletion of node Deletion of a first node Before deletion 1000 NULL NULL After Deletion 1000 NULL NULL Yogidham, Kalawad Road, Rajkot. Ph : ,

25 NULL Deletion of a desired node Before deletion 1000 NULL NULL After deletion 1000 NULL NULL Yogidham, Kalawad Road, Rajkot. Ph : ,

26 Insertion at a desired position Before Insertion 1000 NULL newnode 8000 NULL After Insertion 1000 NULL newnode 8000 NULL Graphical Representation of Circular Linked List 2000 Address of a node 20 Data of a node 3000 Address of next node Top Insertion into a linked list Yogidham, Kalawad Road, Rajkot. Ph : ,

27 3. Insertion as a first node Before insertion newnode NULL After Insertion newnode Insertion at a desired position Before Insertion newnode After Insertion Yogidham, Kalawad Road, Rajkot. Ph : ,

28 newnode Append a node in a linked list Before Append After Appending newnode NULL newnode Deletion from a Linked List Deletion of a first node Before Deletion Yogidham, Kalawad Road, Rajkot. Ph : ,

29 After Deletion Deletion of a desired node Before deletion After deletion Stack What is Stack? Ans. A stack is a data structure in which addition of New element or deleting of existing elements always takes place at the same end. This end is often known as top of stack. This situation can be compared to a stack of plates in a cafeteria where every new plate added to the stack is added at the top. Similarly, every new plate taken off the stack is also from the top of the stack. Yogidham, Kalawad Road, Rajkot. Ph : ,

30 When add an item to a stack we say that we push it on the stack & when we remove an item we say that pop it from the stack. So we can say there are mainly two types of operations, Push & Pop, stack also sometimes called LIFO (Last In First Out). The real life example of Stack: Ans. As we talk about real life example, we all are familiar with a railway system for shutting cars, A railway Shutting system Representation As shown in figure, in this system the last railway car to be placed on the stack is the First-level. Using respectively the insertion & deletion operations permits the cars to be arranging on the output railway line in various orders. What is the major advantage of pointer Implementation stack over array Implementation of stack? Ans. 1. With the array Implementation of stack. It is necessary to preallocate the max. Stack size at the time of implementing the program. 2. In pointer Implementation of stack is not need of the stack size. 3. With array implementation of stack, we must check for stack overflow but with linked list implementation we don t need this. 4. In array implementation if we want to insert a large number of element then we must define the big array. So allocate the memory as per our requirements. 5. When we delete the item from memory that memory can t use for any other purpose. 6. In pointer implementation when we delete the item, the memory is free for any other purpose. Application of the stack: Ans. Yogidham, Kalawad Road, Rajkot. Ph : ,

31 There are several applications where stack can be put to use. 1. Recursion 2. Polish Notation 3. Stack Machine 1. Recursion: - Recursion is the name given to the technique of defining a set on a process in term of itself. OR When a called function in turn calls another function a process of chaining occurs recursion a special case of this process when a function calls itself. There are two important conditions that must be satisfied by any recursive procedure. 1) Each time a procedure calls itself (either directly or indirectly) it must be nearer in some sense, to a solution. In the case of the factorial function, each time that the function calls itself, it argument is decrement by one, so the argument of the function is getting smaller. 2) There must be a decision criterion for stopping the process or computation. In the case of the factorial function, the value of n must be zero. 2. Polish notation: - We are already familiar with arithmetic expressions in infix notation. In this notation a binary operator is placed between its operands. For example: - A + B C A ( C D ) / ( B * D ) A + B * D E / F The operations are normally carried out from left to right. We also have procedure rules for evaluating expressions. A*B+C+D*E would be to multiply B & A, then adding it to C, saving that result temporarily say in RESULT, Then multiplying D & E, and add it to the RESULT. Therefore we have to followed the sequence as given below, AB * C + DE * + Yogidham, Kalawad Road, Rajkot. Ph : ,

32 This notation is called the postfix notation or reverse-polish notation. We can convert infix notation to postfix notation by using stack data structure. 3. Stack Machine: - One of the main problem with using machines which have a very limited no of registers is how to handle the store of intermediate results to solve this problem such machines are known as stack machine. Many of the machines, which are appearing on the market, include in their architecture hardware stacks or stack mechanisms. The such machines are the PDP-11 & the Burroughs Both machines are particularly well suited for the stacking of local variables & parameters that arise in procedure calls of block nested languages. What is push operation? Write an algorithm to push an element in to the stack. Ans. When an item is added to a stack, It is pushed on to the stack, given a stack & an item I, performing the operation push (st,i) adds the item I to the top of stack st. Push operation is applicable to any stack. Push I, to the stack st tos I Stack st Algorithm for push operation Variables Size Total no of elements tos Top of the stack. val Information which you want to insert in stack. Stack[] Array of stack. Step 1 [Check that the stack is Full] If tos = size-1 then (print message) Stack is full. Return. Step 2 [else] [Increment tos by 1] tos tos+1 Yogidham, Kalawad Road, Rajkot. Ph : ,

33 Step 3 [Input the element to stack] Stack[tos] val Step 4 [Stop] What is pop operation? Write an algorithm to pop an element in to the stack. Ans. The pop operation removes the top most item to understand after removed of top most information new value of the pointer top becomes the previous value of top that is top=top-1 & free position is allocated as free space. tos I B A Stack (st) Operation: POP I from the stack. tos B A Stack (st) Algorithm: Step 1 [Check that stack is empty] if tos=-1 then (print message) Stack is Empty return Step 2 [Else] Step 3 [Decrement tos by 1] tos tos-1 return. [Stop] What is peep operation? Write an algorithm to peep an element from the stack. Ans. Yogidham, Kalawad Road, Rajkot. Ph : ,

34 The peep operation does not removes the item from the stack but by using peep we can view the elements from stack. So after peep operation value of tos is unchanged. tos I B A Stack (st) Operation: PEEPS 2nd element from the stack. tos I B A Peeped element is : B Algorithm: Stack (st) This function returns the value of ith element from top of the stack(containing SIZE elements) Step 1 [Check for stack underflow] if tos I + 1 < 0 then (print message) Stack is Empty return Step 2 [Return the Ith element from top of stack] return St[tos I + 1]; Graphical Representation of Stack Array representation of stack with five elements for following operations 1. insert insert insert 30 Yogidham, Kalawad Road, Rajkot. Ph : ,

35 4. delete node 5. delete node 6. insert insert push(10) push(20) push(30) pop( ) 10 pop( ) push(40) push(50) Yogidham, Kalawad Road, Rajkot. Ph : ,

36 Queue What is queue? Ans. Queue is very useful in computer science. We define a queue to be a list in which all addition to the list is made at the one end & all deletion from the list is made at other end. Queue are also called First In First Out list of FIFO for sort. We may draw queue in any one of the forms as given below. rear Data front Data Data Data Data Data Data front Data rear Queue makes two open ends called front & rear. Similarly to stack operation, that operation define a queue are given below, 1. Create a queue 2. Check whether queue is empty 3. Check whether queue is full 4. Add item at the rear queue 5. Remove item from front of queue 6. Read the front of queue 7. Print the enter queue There are mainly two types of queue, 1. Priority queue. 2.Circular queue. For example: - The railway reservation counter is an example of queue where the people collect their tickets on the first in first out basis. Implementation of Queue: Yogidham, Kalawad Road, Rajkot. Ph : ,

37 A queue as pointer front & rear pointing to the front & rear elements of the queue, respectively consider a queue Q consisting of (n) elements & element value which we have to insert in to Q the value NULL of front pointer implies an empty queue. Queue is also called FCFS(First Come First Served). Draw a queue using following data. Ans. Consider a size 6. Assume that the queue is initially empty. It is required to insert element 1,2 & 3 followed by delete 1 & 2 & insert 4,5 & 6. 1 front rear 1 2 Front rear Front rear 2 3 Front rear 3 Front rear 3 4 Front rear Front rear Yogidham, Kalawad Road, Rajkot. Ph : ,

38 Front rear Now, if we try to insert 7, an overflow occurs even through the first two cells are free. To avoid this drawback, we can arrange these elements in a circular fashion with Queue[0] following Queue[n-1]. It is then called a circular array representation. We may depict a circular queue as given in figure, Note:- To see the disadvantage of queue see the advantage of circular queue. Algorithm for simple queue:- Insert function: Variables: - val = Information of user. rear = Variable for last subscript value. front = Point first element in queue. size = Total no of elements. queue = Array of queue. Yogidham, Kalawad Road, Rajkot. Ph : ,

39 Step 1:- Step 2:- Step 3:- Step 4:- Step 5:- [Check that queue is full] if rear = (size 1) then [Print message] Queue is overflow return [else] read value [Check that the element is first element] if rear = -1 then rear = rear +1 front = front +1 [Input an element] queue [rear] val [Stop] Delete Function Step 1. [Check that queue is empty] If front = -1 then (print message) Queue is empty return Step 2. [Check that front & rear both points to same element] If front = rear then Front -1 Rear -1 Return Step 3. [Else] [Increment front by 1] Front front +1 Step 4. Return Step 5. [Stop] Yogidham, Kalawad Road, Rajkot. Ph : ,

40 Print function Step 1. [Check that queue is empty] If front = -1 then (print message) Queue is empty return Step 2. [Print Queue from front to rear] for i front to rear print queue[i] Step 3. [Stop] Search Function Step 1. [Check that queue is empty] If front = -1 then (print message) Queue is empty return Step 2. [Which value you want to search] Read key value Step 3. [Search whole queue] for i front to rear Step 4. [Check that value found] if queue[i] = key then [print message] key Value Found return Step 5. [Stop] Update function Step 1. [Check that queue is empty] If front = -1 then (print message) Queue is empty return Step 2. [Which value you want to update] Read key value Yogidham, Kalawad Road, Rajkot. Ph : ,

41 Step 3. [Search whole queue] for i front to rear Step 4. [Check that value found] if queue[i] = key then read queue[i] return Step 5. [Stop] Circular Queue Explain Circular Queue:- Any number of items could be placed on the queue, so long as items were also being taken off. This implementation of a queue is called circular queue, because it uses its storage array as if it were a circular instead of a linear list. In essence of queue is full when the stored index is one index less that the retrieve index, otherwise there is room in the queue for another event. Circular Queue Perhaps the most common use of a circular queue is in operating system where a circular queue holds the information read from & written to disk files on the console. Circular queues are also used in Real Time Application s programs. Which must continue to process information while buffering I/O request. Advantages of circular queue over simple queue Ans. But in circular queue we can insert new item to the location from where previous item to be deleted using crap cround of the queue. Yogidham, Kalawad Road, Rajkot. Ph : ,

42 In circular queue we can insert n numbers of elements continuously but condition is that we must used deletion. Where as in simple queue continuously insertion is not possible. If a computer need to provide continues scheduling of batch job, without interruption then by using circular implementation we can achieve it. Disadvantages of Circular queue Ans. In circular queue implementation the full queue condition & empty queue condition became same & it is inefficient for program therefore it in necessary to delete the full queue condition at (Array size 1) location meaning that if we have array of 10 location than we can use only a location to insert a queue. Algorithm for Circular Queue: - Insert function: Variables: - Front = Points first element of queue. Rear = Variable for last subscript value. Queue = Array of queue Size = Total no of elements. Step 1. Step 2. Step 3. queue] [Check that Queue is full] If front = 0 & rear = size-1 then [Print message] Queue is overflow return [Else] [Check that Queue is full] if rear = front-1 then [Print message] Queue Overflow return [Else] [Check that rear points to last element of if rear = size-1 then rear 0 Yogidham, Kalawad Road, Rajkot. Ph : ,

43 Step 4. element] queue[rear] val return [Else] [Check that rear doesn t points to any if rear=-1 then front 0 rear 0 queue[rear] val return P.T.O. Step 5. Step 6. Step 8. [Else] [Increment rear by 1] rear rear+1 [assign value in queue] Queue[rear] val [Stop] Delete Function: Step 1. [Check that front & rear both points to same] If front = rear then Front -1 Rear -1 Return Step 2. [Else] [Check front points to last element] If front = size 1 then Front 0 Step 3. [Else] [Increment front by 1] Front front +1 Step 4. Return Step 5. [Stop] Print Function: Yogidham, Kalawad Road, Rajkot. Ph : ,

44 Step 1. [Check that front points to any before rear element] If front <= rear then [Repeat i up to rear] for i front to rear print queue[i] Step 2. [else] [Repeat i up to last element] for i rear to size 1 print queue[i] Step 3. [Repeat i up to front] for i 0 to front print queue[i] Step 4. [Stop] Application of Queue: In a computer network messages from one to another computer are generally created asynchronously. These messages therefore need to be buffered until the receiving computer is ready for it these communication buffers make extensive use of Queues by storing of Queues by storing these message in a queue. Also the messages need to be sent to receiving computer in the some order in which they are created. I.e. FIFO. Yogidham, Kalawad Road, Rajkot. Ph : ,

45 Tree Definition:- o A Tree structure means that the data is organized as branches, which relate the info. It is a non-linear data structure. One very common gynecological chart that is used to represent tree structure is lineage. The lineage chart represents ancestors. Explain Tree:- o A Tree structure means that the data is organized as branches, which relate the info. o It is used to represent the relationship among data element in so many applications. o Tree is a non-linear data structure. o Trees are encountered frequently in every life. o An arrays, lists, stacks, queues are linear data structure. o Graphs are classified in the non-linear category of data structure. You may recall from the previous blocks on graph that an important class of graph is called Trees. o In Tree structure each node may paint to several other nodes. Thus a tree is a very flexible & powerful data structure that can be used for a glide variety of application. o Although the nodes in a general tree may contain any no of pointer to the other tree nodes. o A large no of data structure have at the most two pointers to the other tree nodes. This type of tree is called Root. Together with two binary trees called the left sub tree & right sub tree of the root. o Gaining from the leaves to the root is called climbing the tree & gaining from the root to the leaves is called descending the tree. o One of the most fundamental & useful concept is computer science. o Trees find their application such as compiles construction database design, operating systems etc. o For (e.g.) :- Suppose we wish to use a data structure to represent a person & all of his or her descendants. Assume that the person s name is Rahul & that he has 3 Children, sanjay, Sameer, Nisha. Also suppose that sameer has 3 children, Abhay, Ajit & Madhu and nisha has a child Neha. We can represent rahul & his descendants guit naturally with the tree structure shown below. Yogidham, Kalawad Road, Rajkot. Ph : ,

46 The set of tree is called forest. Binary Tree:- o A Binary tree is a finite set of element that is either empty or is partitioned into three disjoint subsets. The first subset contains a single element called the root of the tree. The other two subsets are themselves binary trees called the left & right subtree of the original tree. A left or right subtree can be empty. Each element is called a NODE of the tree. o For (e.g):- We have a root R & two disjoint binary tree, T1 & T2 (Which are called the left sub tree & right sub tree respectively). If T1 is non-empty then the root of the T1 is called the left successor of R. If T2 is non-empty then the root of T2 is called as right successor of R. Yogidham, Kalawad Road, Rajkot. Ph : ,

47 Here root is 1 & its predecessor is 2 & right successor is 3. Similarly left successor of 2 is 4& right successor is 5. Representation OR Implementation of Binary Tree. There are two traditional popular techniques that are used to maintain binary tree in to the memory these are, Sequential Representation (Linear) Linked list Representation (Link) Sequential Representation:- A Sequential Representation of a binary tree requires numbering of nodes starting with nodes on level then level 1 & so on. The nodes are numbered from left to right. The nodes of the binary tree are maintained in a one-dimensional array. Once the size of array has been determined the following method is used to represent the tree. Stare the root in 1 st location of array. If a node is in location n of the array. Stare its left & location in & its right child location (zn+1) Advantages:- The main advantage of this method i.e in its simplicity & the fact that given a child node, its parent node can be determined immediately, If the child nodes at location N in the array then its parents node is at location N/Z (integer division). It can be implemented easily in elder language such as BASIC & FORTRAN. In tree searching is faster than linked list. Disadvantages:- Yogidham, Kalawad Road, Rajkot. Ph : ,

48 Insertion & Deletion of node cause considerable data movement up & down. The array takes more processing time. In this method, the memory locations are listed if tree is partially filled. Linked Representation:- In this representation each node requires three fields. One for the link of the left child, Second field for representing the information associated with the node & the Third field is used to represent the link of the right child. Pointer to Left Child Info Pointer to Right Child When a node has no child then the corresponding pointer fields are Null. The given figure shows a linked representation of the binary tree. The Llink & Rlink fields are pointer to left child & the right child of a node. Advantages:- The insertion & the deletion in value no data movement except the rearrangement of pointer. Thus, processing time is reduce. Disadvantages:- Wastage of memory space in NULL pointer. The above given figure has 10 NULL pointers. Given a node, it is difficult to determine it s a parent. Its algorithm implementation is more difficult in languages such as BASIC, COBOL. FORTRON. Solution of Disadvantages:- Yogidham, Kalawad Road, Rajkot. Ph : ,

49 Threading the tree can offset the first disadvantage. The second disadvantage can be offset by adding a parent field to a node Operation Of Binary Tree o There are several operation that can be performed in binary trees such as, Insertion Deletion Searching Traversal of the tree etc. Traversal:- One of the most common operation performed on tree structure is that the Traversal. This is procedure by which each node in the tree is processed exactly once. There are mainly three types of traversing binary tree. Preorder Inorder Postorder Preorder:- In this technique first of all we processed the root R of the binary tree T. Then we traversal the left subtree T1 & R in preorder Which means that we traversal root of the subtree T1 first & then its left subtree. First of all consider the root node A then consider its left subtree as shown in upper figure. Yogidham, Kalawad Road, Rajkot. Ph : ,

50 Now we process root of subtree T1 & then its left subtree T3 that is a terminal node o. Now, consider the right subtree of T1 that T4, the root of T0 is E & then left subtree of T4 is T7 that is the terminal of all the nodes of the left subtree T1 is finished & is given as, B,D,E,F. Continue the same process for the right subtree of A & its nodes. After completion of the preorder traversing of binary tree we get list of nodes as following, A, B, D, E, F, C, G, H, I, J. The preorder traversal of a binary tree is defined as follows, First process the root node. Second traversal the left subtree in preorder. Third traversal the right subtree in preorder. Algorithm for preorder:- Temproot:- Temporary pointer variable initialized with root. Info:- Information part of node. Left:- Pointer to left most node. Right:- Pointer to right most node. Step-1:-( Repeat step 2,3,4 & check that temproot is not equal to NULL) If temproot is not equal to NULL then Step-2:-(Print information part of node) Print info(temproot) Step-3:-(Call function itself as a left most node) Preorder(left(temproot)) Step-4:-(Call function itself as a right most node) Preorder(right(temproot)) Step-5:-(Stop) Inorder:- In inorder traversal method first of all we have to process the left subtree T1 of the root R in Inorder then process the root R & at the last. We process the right subtree T2 of R. Yogidham, Kalawad Road, Rajkot. Ph : ,

51 Consider the figure we first process the node D then the root of D is B node & then the right subtree of B. now the left subtree of e is f that is the terminal node thus, all the nodes of left subtree of root is processed & resulting list is as follows: Left Tree:- T1 B D T3 E T4 J T9 Then we process the root A & then process the right subtree T2. Combining all the list of elements of the left subtree T1 & root & T2 element of the right subtree T2, We get the list of all the element in the binary tree T as following Yogidham, Kalawad Road, Rajkot. Ph : ,

52 D, B, J, E, A, F, C, H, G, I. The inorder to traversal of a binary tree is define as follows, Traverse the left tree in Inorder. Process the root node. Traverse the right tree in Inorder. Algorithm For Inorder Traversal of Binary Tree:- Variable:- Same as Preorder. Step-1:- (Repeat step2,3 & 4 & check that temproot is not equal to NULL) If temproot is not equal to NULL then Step-2:-(Call function itself as a left most node) Inorder (left(temproot)) Step-3:-(print Information part of node) Info (temproot) Step-4:-(Call function itself as a right most node) Inorder (right(temproot)) Step-5:-(Stop) Postorder Traversal:- In the postorder traversal first of all we process the left subtree T1 of root in postorder. Then, the right subtree T2 in postorder & at the last the root. A T6 T3 D B T1 C T4 T5 E G H T2 T9 F T7 I T8 J Consider the figure, we first process the terminal node D. Now, we consider right subtree of B that is E, the left subtree of E is F, so process F at the second priority as, Yogidham, Kalawad Road, Rajkot. Ph : ,

53 there is no right subtree of E & at list root of subtree T1 that is B, the resulting list of elements after traversing the left subtree in postorder is as follows T3 B T1 T4 D E T7 F The final list of elements after traversing binary tree is as follows, D, F, E, B, G, I, J, H, C, A. Postorder traversal of binary tree as defined as follows, Traverse the left subtree in postorder. Traverse the right subtree in postorder. Process the root node. Algorithm for Postorder Traversal of Binary Tree. :- Variable:- Same as preorder. Step-1:-(Repeat step 2,3,4 & check that temproot is equal to NULL) If temproot is not equal to NULL then Step-2:- (Call function itself as a left most node) Postorder(left(temproot)) Step-3:- (Call function itself as a right most node) Postorder(right(temproot)) Step-4:-(Output the information part of node) Info(temproot) Step-5:-(Stop) Application of Binary Tree:- There are three types of Binary tree application Yogidham, Kalawad Road, Rajkot. Ph : ,

54 Manipulation of Arithmetic operation. Symbol table constructor. Syntax analysis. MANIPULATION OF ARITHMETIC OPERATION We will first discuss the relationship between binary tree & formulas in prefix or suffix notation. Next we will discuss the mechanical manipulation of expressions that are represented by binary tree. We observe that the formulas in reverse polish notation are very useful in the compilations process. There is a close relationship between binary tree & formulas in prefix or suffix notation. Lets write any where the left & right subtree are as the left & right operands of the tree are the variable & constants in the expression. We may want to symbolically add, subtract, multiply, divide, differential, integrate etc. such expressions. Symbolic table Construction:- One of the criteria that a symbol table routine must meet is that the table searching must be performed efficiently. The two required operations that must be performed on symbol table are insertion & look-up each of which involves searching. A binary tree structure is chosen for two reasons. The first reason is if the symbol entries as encountered one uniformly distributed according to lexico graphic order Second a binary tree is easily maintained in lexico graphic Order in the sense that only a few paints need to be changed. Also the message needs to be sent to receiving computer in the same order in which they are created i.e. FIFO (First In First out) order. Yogidham, Kalawad Road, Rajkot. Ph : ,

55 Graphs 1) Graph:- A graph G consists of a non-empty set V called the set of nodes of the graph a set E which is the set of edge of the graph & a mapping from the set of edges E to a set of pairs of elements of V. Or A graph consists of a set of nodes & a set of edges. A pair of nodes specifies each edge in a graph. 2) Node: - 3) Structure: - 4) Forest: - A graph G consists of non empty set V called the set of Nodes of the graph. Structure is a user define data type that allows the user to perform certain(several) operations on to the different types of DATA TYPES. A set of disjoint tree is called the Forest. 5) Weighted Graph: - A graph in which weights are assigned to every edge is called a weighted graph. 6) Sling: - An edge of a graph, which joins a node to itself, is called a Sling. 7) Complete Graph: - A graph is complete or completely connected if and only if every pair of vertices are connected in at list one direction. 8) Mixed Graph: - If some of the edges are directed and some of the edges are undirected in a graph then the graph is called Mixed graph. Yogidham, Kalawad Road, Rajkot. Ph : ,

56 9) Pointer: - Pointer is a one type of utility which is provided by the C Language that can store the address of the any particular node. 10) Isolated Vertex: - In a graph, which is not adjacent to any other node is called Isolated vertex. 11) Loop: - 12) Directed Graph: - 13) Undirected Graph:- 14) Acyclic: - 15) Outdegree of node: - 16) Indegree of node: - An edge of a graph, which joins a node to itself, is called a Loop. The direction of loop of no significance, hence it can be considered either a directed or undirected edge. A graph is called a directed graph if each edge is identified by ordered pay of vertices (vi, vj) Undirected graph the first element of the pair is called the start vertex and the second element is called the end vertex of the edge. The edge is set to be directed from the start vertex to the end vertex therefore the pairs (vi, vj) and (vj, vi) represent two different edges in a directed graph. In Graph G=(V,E) an edge which has no specific direction is called an Undirected edge. A graph in which every edge is undirected is called Undirected graph. A directed graph is acyclic if it has no cycles. Otherwise graph is known as cyclic graph. The outdegree of vi is the number of edges whose start vertex is vi. Yogidham, Kalawad Road, Rajkot. Ph : ,

Data Structure [Question Bank]

Data Structure [Question Bank] Unit I (Analysis of Algorithms) 1. What are algorithms and how they are useful? 2. Describe the factor on best algorithms depends on? 3. Differentiate: Correct & Incorrect Algorithms? 4. Write short note:

More information

DATA STRUCTURES USING C

DATA STRUCTURES USING C DATA STRUCTURES USING C QUESTION BANK UNIT I 1. Define data. 2. Define Entity. 3. Define information. 4. Define Array. 5. Define data structure. 6. Give any two applications of data structures. 7. Give

More information

1) The postfix expression for the infix expression A+B*(C+D)/F+D*E is ABCD+*F/DE*++

1) The postfix expression for the infix expression A+B*(C+D)/F+D*E is ABCD+*F/DE*++ Answer the following 1) The postfix expression for the infix expression A+B*(C+D)/F+D*E is ABCD+*F/DE*++ 2) Which data structure is needed to convert infix notations to postfix notations? Stack 3) The

More information

Algorithms and Data Structures

Algorithms and Data Structures Algorithms and Data Structures Part 2: Data Structures PD Dr. rer. nat. habil. Ralf-Peter Mundani Computation in Engineering (CiE) Summer Term 2016 Overview general linked lists stacks queues trees 2 2

More information

10CS35: Data Structures Using C

10CS35: Data Structures Using C CS35: Data Structures Using C QUESTION BANK REVIEW OF STRUCTURES AND POINTERS, INTRODUCTION TO SPECIAL FEATURES OF C OBJECTIVE: Learn : Usage of structures, unions - a conventional tool for handling a

More information

PES Institute of Technology-BSC QUESTION BANK

PES Institute of Technology-BSC QUESTION BANK PES Institute of Technology-BSC Faculty: Mrs. R.Bharathi CS35: Data Structures Using C QUESTION BANK UNIT I -BASIC CONCEPTS 1. What is an ADT? Briefly explain the categories that classify the functions

More information

5. A full binary tree with n leaves contains [A] n nodes. [B] log n 2 nodes. [C] 2n 1 nodes. [D] n 2 nodes.

5. A full binary tree with n leaves contains [A] n nodes. [B] log n 2 nodes. [C] 2n 1 nodes. [D] n 2 nodes. 1. The advantage of.. is that they solve the problem if sequential storage representation. But disadvantage in that is they are sequential lists. [A] Lists [B] Linked Lists [A] Trees [A] Queues 2. The

More information

Module 2 Stacks and Queues: Abstract Data Types

Module 2 Stacks and Queues: Abstract Data Types Module 2 Stacks and Queues: Abstract Data Types A stack is one of the most important and useful non-primitive linear data structure in computer science. It is an ordered collection of items into which

More information

Krishna Institute of Engineering & Technology, Ghaziabad Department of Computer Application MCA-213 : DATA STRUCTURES USING C

Krishna Institute of Engineering & Technology, Ghaziabad Department of Computer Application MCA-213 : DATA STRUCTURES USING C Tutorial#1 Q 1:- Explain the terms data, elementary item, entity, primary key, domain, attribute and information? Also give examples in support of your answer? Q 2:- What is a Data Type? Differentiate

More information

Data Structures UNIT III. Model Question Answer

Data Structures UNIT III. Model Question Answer Data Structures UNIT III Model Question Answer Q.1. Define Stack? What are the different primitive operations on Stack? Ans: Stack: A stack is a linear structure in which items may be added or removed

More information

GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT. Course Curriculum. DATA STRUCTURES (Code: 3330704)

GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT. Course Curriculum. DATA STRUCTURES (Code: 3330704) GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT Course Curriculum DATA STRUCTURES (Code: 3330704) Diploma Programme in which this course is offered Semester in which offered Computer Engineering,

More information

Any two nodes which are connected by an edge in a graph are called adjacent node.

Any two nodes which are connected by an edge in a graph are called adjacent node. . iscuss following. Graph graph G consist of a non empty set V called the set of nodes (points, vertices) of the graph, a set which is the set of edges and a mapping from the set of edges to a set of pairs

More information

1. The memory address of the first element of an array is called A. floor address B. foundation addressc. first address D.

1. The memory address of the first element of an array is called A. floor address B. foundation addressc. first address D. 1. The memory address of the first element of an array is called A. floor address B. foundation addressc. first address D. base address 2. The memory address of fifth element of an array can be calculated

More information

Data Structure with C

Data Structure with C Subject: Data Structure with C Topic : Tree Tree A tree is a set of nodes that either:is empty or has a designated node, called the root, from which hierarchically descend zero or more subtrees, which

More information

MAX = 5 Current = 0 'This will declare an array with 5 elements. Inserting a Value onto the Stack (Push) -----------------------------------------

MAX = 5 Current = 0 'This will declare an array with 5 elements. Inserting a Value onto the Stack (Push) ----------------------------------------- =============================================================================================================================== DATA STRUCTURE PSEUDO-CODE EXAMPLES (c) Mubashir N. Mir - www.mubashirnabi.com

More information

Common Data Structures

Common Data Structures Data Structures 1 Common Data Structures Arrays (single and multiple dimensional) Linked Lists Stacks Queues Trees Graphs You should already be familiar with arrays, so they will not be discussed. Trees

More information

Stack & Queue. Darshan Institute of Engineering & Technology. Explain Array in detail. Row major matrix No of Columns = m = u2 b2 + 1

Stack & Queue. Darshan Institute of Engineering & Technology. Explain Array in detail. Row major matrix No of Columns = m = u2 b2 + 1 Stack & Queue Explain Array in detail One Dimensional Array Simplest data structure that makes use of computed address to locate its elements is the onedimensional array or vector; number of memory locations

More information

Data Structures Using C++ 2E. Chapter 5 Linked Lists

Data Structures Using C++ 2E. Chapter 5 Linked Lists Data Structures Using C++ 2E Chapter 5 Linked Lists Doubly Linked Lists Traversed in either direction Typical operations Initialize the list Destroy the list Determine if list empty Search list for a given

More information

Binary Search Trees. A Generic Tree. Binary Trees. Nodes in a binary search tree ( B-S-T) are of the form. P parent. Key. Satellite data L R

Binary Search Trees. A Generic Tree. Binary Trees. Nodes in a binary search tree ( B-S-T) are of the form. P parent. Key. Satellite data L R Binary Search Trees A Generic Tree Nodes in a binary search tree ( B-S-T) are of the form P parent Key A Satellite data L R B C D E F G H I J The B-S-T has a root node which is the only node whose parent

More information

TREE BASIC TERMINOLOGIES

TREE BASIC TERMINOLOGIES TREE Trees are very flexible, versatile and powerful non-liner data structure that can be used to represent data items possessing hierarchical relationship between the grand father and his children and

More information

Home Page. Data Structures. Title Page. Page 1 of 24. Go Back. Full Screen. Close. Quit

Home Page. Data Structures. Title Page. Page 1 of 24. Go Back. Full Screen. Close. Quit Data Structures Page 1 of 24 A.1. Arrays (Vectors) n-element vector start address + ielementsize 0 +1 +2 +3 +4... +n-1 start address continuous memory block static, if size is known at compile time dynamic,

More information

The following themes form the major topics of this chapter: The terms and concepts related to trees (Section 5.2).

The following themes form the major topics of this chapter: The terms and concepts related to trees (Section 5.2). CHAPTER 5 The Tree Data Model There are many situations in which information has a hierarchical or nested structure like that found in family trees or organization charts. The abstraction that models hierarchical

More information

Symbol Tables. Introduction

Symbol Tables. Introduction Symbol Tables Introduction A compiler needs to collect and use information about the names appearing in the source program. This information is entered into a data structure called a symbol table. The

More information

Questions 1 through 25 are worth 2 points each. Choose one best answer for each.

Questions 1 through 25 are worth 2 points each. Choose one best answer for each. Questions 1 through 25 are worth 2 points each. Choose one best answer for each. 1. For the singly linked list implementation of the queue, where are the enqueues and dequeues performed? c a. Enqueue in

More information

Glossary of Object Oriented Terms

Glossary of Object Oriented Terms Appendix E Glossary of Object Oriented Terms abstract class: A class primarily intended to define an instance, but can not be instantiated without additional methods. abstract data type: An abstraction

More information

Application of Stacks: Postfix Expressions Calculator (cont d.)

Application of Stacks: Postfix Expressions Calculator (cont d.) Application of Stacks: Postfix Expressions Calculator (cont d.) Postfix expression: 6 3 + 2 * = FIGURE 7-15 Evaluating the postfix expression: 6 3 + 2 * = Data Structures Using C++ 2E 1 Application of

More information

CSE 326, Data Structures. Sample Final Exam. Problem Max Points Score 1 14 (2x7) 2 18 (3x6) 3 4 4 7 5 9 6 16 7 8 8 4 9 8 10 4 Total 92.

CSE 326, Data Structures. Sample Final Exam. Problem Max Points Score 1 14 (2x7) 2 18 (3x6) 3 4 4 7 5 9 6 16 7 8 8 4 9 8 10 4 Total 92. Name: Email ID: CSE 326, Data Structures Section: Sample Final Exam Instructions: The exam is closed book, closed notes. Unless otherwise stated, N denotes the number of elements in the data structure

More information

2) Write in detail the issues in the design of code generator.

2) Write in detail the issues in the design of code generator. COMPUTER SCIENCE AND ENGINEERING VI SEM CSE Principles of Compiler Design Unit-IV Question and answers UNIT IV CODE GENERATION 9 Issues in the design of code generator The target machine Runtime Storage

More information

Converting a Number from Decimal to Binary

Converting a Number from Decimal to Binary Converting a Number from Decimal to Binary Convert nonnegative integer in decimal format (base 10) into equivalent binary number (base 2) Rightmost bit of x Remainder of x after division by two Recursive

More information

Chapter 3: Restricted Structures Page 1

Chapter 3: Restricted Structures Page 1 Chapter 3: Restricted Structures Page 1 1 2 3 4 5 6 7 8 9 10 Restricted Structures Chapter 3 Overview Of Restricted Structures The two most commonly used restricted structures are Stack and Queue Both

More information

Data Structure and Algorithm I Midterm Examination 120 points Time: 9:10am-12:10pm (180 minutes), Friday, November 12, 2010

Data Structure and Algorithm I Midterm Examination 120 points Time: 9:10am-12:10pm (180 minutes), Friday, November 12, 2010 Data Structure and Algorithm I Midterm Examination 120 points Time: 9:10am-12:10pm (180 minutes), Friday, November 12, 2010 Problem 1. In each of the following question, please specify if the statement

More information

2. (a) Explain the strassen s matrix multiplication. (b) Write deletion algorithm, of Binary search tree. [8+8]

2. (a) Explain the strassen s matrix multiplication. (b) Write deletion algorithm, of Binary search tree. [8+8] Code No: R05220502 Set No. 1 1. (a) Describe the performance analysis in detail. (b) Show that f 1 (n)+f 2 (n) = 0(max(g 1 (n), g 2 (n)) where f 1 (n) = 0(g 1 (n)) and f 2 (n) = 0(g 2 (n)). [8+8] 2. (a)

More information

7.1 Our Current Model

7.1 Our Current Model Chapter 7 The Stack In this chapter we examine what is arguably the most important abstract data type in computer science, the stack. We will see that the stack ADT and its implementation are very simple.

More information

Introduction to Data Structures

Introduction to Data Structures Introduction to Data Structures Albert Gural October 28, 2011 1 Introduction When trying to convert from an algorithm to the actual code, one important aspect to consider is how to store and manipulate

More information

Data Structures and Data Manipulation

Data Structures and Data Manipulation Data Structures and Data Manipulation What the Specification Says: Explain how static data structures may be used to implement dynamic data structures; Describe algorithms for the insertion, retrieval

More information

PROBLEMS (Cap. 4 - Istruzioni macchina)

PROBLEMS (Cap. 4 - Istruzioni macchina) 98 CHAPTER 2 MACHINE INSTRUCTIONS AND PROGRAMS PROBLEMS (Cap. 4 - Istruzioni macchina) 2.1 Represent the decimal values 5, 2, 14, 10, 26, 19, 51, and 43, as signed, 7-bit numbers in the following binary

More information

Data Structures. Level 6 C30151. www.fetac.ie. Module Descriptor

Data Structures. Level 6 C30151. www.fetac.ie. Module Descriptor The Further Education and Training Awards Council (FETAC) was set up as a statutory body on 11 June 2001 by the Minister for Education and Science. Under the Qualifications (Education & Training) Act,

More information

Binary Search Trees CMPSC 122

Binary Search Trees CMPSC 122 Binary Search Trees CMPSC 122 Note: This notes packet has significant overlap with the first set of trees notes I do in CMPSC 360, but goes into much greater depth on turning BSTs into pseudocode than

More information

Analysis of a Search Algorithm

Analysis of a Search Algorithm CSE 326 Lecture 4: Lists and Stacks 1. Agfgd 2. Dgsdsfd 3. Hdffdsf 4. Sdfgsfdg 5. Tefsdgass We will review: Analysis: Searching a sorted array (from last time) List ADT: Insert, Delete, Find, First, Kth,

More information

Ordered Lists and Binary Trees

Ordered Lists and Binary Trees Data Structures and Algorithms Ordered Lists and Binary Trees Chris Brooks Department of Computer Science University of San Francisco Department of Computer Science University of San Francisco p.1/62 6-0:

More information

root node level: internal node edge leaf node CS@VT Data Structures & Algorithms 2000-2009 McQuain

root node level: internal node edge leaf node CS@VT Data Structures & Algorithms 2000-2009 McQuain inary Trees 1 A binary tree is either empty, or it consists of a node called the root together with two binary trees called the left subtree and the right subtree of the root, which are disjoint from each

More information

Binary Search Trees (BST)

Binary Search Trees (BST) Binary Search Trees (BST) 1. Hierarchical data structure with a single reference to node 2. Each node has at most two child nodes (a left and a right child) 3. Nodes are organized by the Binary Search

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK A REVIEW ON THE USAGE OF OLD AND NEW DATA STRUCTURE ARRAYS, LINKED LIST, STACK,

More information

Chapter 13: Query Processing. Basic Steps in Query Processing

Chapter 13: Query Processing. Basic Steps in Query Processing Chapter 13: Query Processing! Overview! Measures of Query Cost! Selection Operation! Sorting! Join Operation! Other Operations! Evaluation of Expressions 13.1 Basic Steps in Query Processing 1. Parsing

More information

KITES TECHNOLOGY COURSE MODULE (C, C++, DS)

KITES TECHNOLOGY COURSE MODULE (C, C++, DS) KITES TECHNOLOGY 360 Degree Solution www.kitestechnology.com/academy.php info@kitestechnology.com technologykites@gmail.com Contact: - 8961334776 9433759247 9830639522.NET JAVA WEB DESIGN PHP SQL, PL/SQL

More information

Data Structures Using C++

Data Structures Using C++ Data Structures Using C++ 1.1 Introduction Data structure is an implementation of an abstract data type having its own set of data elements along with functions to perform operations on that data. Arrays

More information

Chapter 14 The Binary Search Tree

Chapter 14 The Binary Search Tree Chapter 14 The Binary Search Tree In Chapter 5 we discussed the binary search algorithm, which depends on a sorted vector. Although the binary search, being in O(lg(n)), is very efficient, inserting a

More information

IE 680 Special Topics in Production Systems: Networks, Routing and Logistics*

IE 680 Special Topics in Production Systems: Networks, Routing and Logistics* IE 680 Special Topics in Production Systems: Networks, Routing and Logistics* Rakesh Nagi Department of Industrial Engineering University at Buffalo (SUNY) *Lecture notes from Network Flows by Ahuja, Magnanti

More information

Data Structures and Algorithms

Data Structures and Algorithms Data Structures and Algorithms CS245-2016S-06 Binary Search Trees David Galles Department of Computer Science University of San Francisco 06-0: Ordered List ADT Operations: Insert an element in the list

More information

Binary Trees and Huffman Encoding Binary Search Trees

Binary Trees and Huffman Encoding Binary Search Trees Binary Trees and Huffman Encoding Binary Search Trees Computer Science E119 Harvard Extension School Fall 2012 David G. Sullivan, Ph.D. Motivation: Maintaining a Sorted Collection of Data A data dictionary

More information

G. H. RAISONI COLLEGE OF ENGG NAGPUR-16 Session 2006-2007 DEPARTMENT CSE Semester IV SUBJECT DSPD

G. H. RAISONI COLLEGE OF ENGG NAGPUR-16 Session 2006-2007 DEPARTMENT CSE Semester IV SUBJECT DSPD G. H. RAISONI COLLEGE OF ENGG NAGPUR-16 Session 2006-2007 DEPARTMENT CSE Semester IV SUBJECT DSPD LIST OF EXPERIMENTS 1.Make a database. The record tag,tstudent consists of these fields: Name[20],RollNo.[5],Address[40],Phone[12],UT-1[2,from1

More information

Introduction to Data Structures and Algorithms

Introduction to Data Structures and Algorithms Introduction to Data Structures and Algorithms Chapter: Elementary Data Structures(1) Lehrstuhl Informatik 7 (Prof. Dr.-Ing. Reinhard German) Martensstraße 3, 91058 Erlangen Overview on simple data structures

More information

Advanced Computer Architecture-CS501. Computer Systems Design and Architecture 2.1, 2.2, 3.2

Advanced Computer Architecture-CS501. Computer Systems Design and Architecture 2.1, 2.2, 3.2 Lecture Handout Computer Architecture Lecture No. 2 Reading Material Vincent P. Heuring&Harry F. Jordan Chapter 2,Chapter3 Computer Systems Design and Architecture 2.1, 2.2, 3.2 Summary 1) A taxonomy of

More information

CS104: Data Structures and Object-Oriented Design (Fall 2013) October 24, 2013: Priority Queues Scribes: CS 104 Teaching Team

CS104: Data Structures and Object-Oriented Design (Fall 2013) October 24, 2013: Priority Queues Scribes: CS 104 Teaching Team CS104: Data Structures and Object-Oriented Design (Fall 2013) October 24, 2013: Priority Queues Scribes: CS 104 Teaching Team Lecture Summary In this lecture, we learned about the ADT Priority Queue. A

More information

AP Computer Science AB Syllabus 1

AP Computer Science AB Syllabus 1 AP Computer Science AB Syllabus 1 Course Resources Java Software Solutions for AP Computer Science, J. Lewis, W. Loftus, and C. Cocking, First Edition, 2004, Prentice Hall. Video: Sorting Out Sorting,

More information

Data Structures Fibonacci Heaps, Amortized Analysis

Data Structures Fibonacci Heaps, Amortized Analysis Chapter 4 Data Structures Fibonacci Heaps, Amortized Analysis Algorithm Theory WS 2012/13 Fabian Kuhn Fibonacci Heaps Lacy merge variant of binomial heaps: Do not merge trees as long as possible Structure:

More information

Sample Questions Csci 1112 A. Bellaachia

Sample Questions Csci 1112 A. Bellaachia Sample Questions Csci 1112 A. Bellaachia Important Series : o S( N) 1 2 N N i N(1 N) / 2 i 1 o Sum of squares: N 2 N( N 1)(2N 1) N i for large N i 1 6 o Sum of exponents: N k 1 k N i for large N and k

More information

Course: Programming II - Abstract Data Types. The ADT Stack. A stack. The ADT Stack and Recursion Slide Number 1

Course: Programming II - Abstract Data Types. The ADT Stack. A stack. The ADT Stack and Recursion Slide Number 1 Definition Course: Programming II - Abstract Data Types The ADT Stack The ADT Stack is a linear sequence of an arbitrary number of items, together with access procedures. The access procedures permit insertions

More information

Catalan Numbers. Thomas A. Dowling, Department of Mathematics, Ohio State Uni- versity.

Catalan Numbers. Thomas A. Dowling, Department of Mathematics, Ohio State Uni- versity. 7 Catalan Numbers Thomas A. Dowling, Department of Mathematics, Ohio State Uni- Author: versity. Prerequisites: The prerequisites for this chapter are recursive definitions, basic counting principles,

More information

PART-A Questions. 2. How does an enumerated statement differ from a typedef statement?

PART-A Questions. 2. How does an enumerated statement differ from a typedef statement? 1. Distinguish & and && operators. PART-A Questions 2. How does an enumerated statement differ from a typedef statement? 3. What are the various members of a class? 4. Who can access the protected members

More information

ECE 250 Data Structures and Algorithms MIDTERM EXAMINATION 2008-10-23/5:15-6:45 REC-200, EVI-350, RCH-106, HH-139

ECE 250 Data Structures and Algorithms MIDTERM EXAMINATION 2008-10-23/5:15-6:45 REC-200, EVI-350, RCH-106, HH-139 ECE 250 Data Structures and Algorithms MIDTERM EXAMINATION 2008-10-23/5:15-6:45 REC-200, EVI-350, RCH-106, HH-139 Instructions: No aides. Turn off all electronic media and store them under your desk. If

More information

A binary search tree or BST is a binary tree that is either empty or in which the data element of each node has a key, and:

A binary search tree or BST is a binary tree that is either empty or in which the data element of each node has a key, and: Binary Search Trees 1 The general binary tree shown in the previous chapter is not terribly useful in practice. The chief use of binary trees is for providing rapid access to data (indexing, if you will)

More information

Unordered Linked Lists

Unordered Linked Lists Unordered Linked Lists Derive class unorderedlinkedlist from the abstract class linkedlisttype Implement the operations search, insertfirst, insertlast, deletenode See code on page 292 Defines an unordered

More information

EE2204 DATA STRUCTURES AND ALGORITHM (Common to EEE, EIE & ICE)

EE2204 DATA STRUCTURES AND ALGORITHM (Common to EEE, EIE & ICE) EE2204 DATA STRUCTURES AND ALGORITHM (Common to EEE, EIE & ICE) UNIT I LINEAR STRUCTURES Abstract Data Types (ADT) List ADT array-based implementation linked list implementation cursor-based linked lists

More information

Fast Sequential Summation Algorithms Using Augmented Data Structures

Fast Sequential Summation Algorithms Using Augmented Data Structures Fast Sequential Summation Algorithms Using Augmented Data Structures Vadim Stadnik vadim.stadnik@gmail.com Abstract This paper provides an introduction to the design of augmented data structures that offer

More information

Regular Expressions and Automata using Haskell

Regular Expressions and Automata using Haskell Regular Expressions and Automata using Haskell Simon Thompson Computing Laboratory University of Kent at Canterbury January 2000 Contents 1 Introduction 2 2 Regular Expressions 2 3 Matching regular expressions

More information

Sequential Data Structures

Sequential Data Structures Sequential Data Structures In this lecture we introduce the basic data structures for storing sequences of objects. These data structures are based on arrays and linked lists, which you met in first year

More information

ALGEBRA. sequence, term, nth term, consecutive, rule, relationship, generate, predict, continue increase, decrease finite, infinite

ALGEBRA. sequence, term, nth term, consecutive, rule, relationship, generate, predict, continue increase, decrease finite, infinite ALGEBRA Pupils should be taught to: Generate and describe sequences As outcomes, Year 7 pupils should, for example: Use, read and write, spelling correctly: sequence, term, nth term, consecutive, rule,

More information

Stack Allocation. Run-Time Data Structures. Static Structures

Stack Allocation. Run-Time Data Structures. Static Structures Run-Time Data Structures Stack Allocation Static Structures For static structures, a fixed address is used throughout execution. This is the oldest and simplest memory organization. In current compilers,

More information

Unit 1. 5. Write iterative and recursive C functions to find the greatest common divisor of two integers. [6]

Unit 1. 5. Write iterative and recursive C functions to find the greatest common divisor of two integers. [6] Unit 1 1. Write the following statements in C : [4] Print the address of a float variable P. Declare and initialize an array to four characters a,b,c,d. 2. Declare a pointer to a function f which accepts

More information

MICROPROCESSOR AND MICROCOMPUTER BASICS

MICROPROCESSOR AND MICROCOMPUTER BASICS Introduction MICROPROCESSOR AND MICROCOMPUTER BASICS At present there are many types and sizes of computers available. These computers are designed and constructed based on digital and Integrated Circuit

More information

Lecture 12 Doubly Linked Lists (with Recursion)

Lecture 12 Doubly Linked Lists (with Recursion) Lecture 12 Doubly Linked Lists (with Recursion) In this lecture Introduction to Doubly linked lists What is recursion? Designing a node of a DLL Recursion and Linked Lists o Finding a node in a LL (recursively)

More information

Analysis of Algorithms I: Binary Search Trees

Analysis of Algorithms I: Binary Search Trees Analysis of Algorithms I: Binary Search Trees Xi Chen Columbia University Hash table: A data structure that maintains a subset of keys from a universe set U = {0, 1,..., p 1} and supports all three dictionary

More information

Learning Outcomes. COMP202 Complexity of Algorithms. Binary Search Trees and Other Search Trees

Learning Outcomes. COMP202 Complexity of Algorithms. Binary Search Trees and Other Search Trees Learning Outcomes COMP202 Complexity of Algorithms Binary Search Trees and Other Search Trees [See relevant sections in chapters 2 and 3 in Goodrich and Tamassia.] At the conclusion of this set of lecture

More information

1 Description of The Simpletron

1 Description of The Simpletron Simulating The Simpletron Computer 50 points 1 Description of The Simpletron In this assignment you will write a program to simulate a fictional computer that we will call the Simpletron. As its name implies

More information

Physical Data Organization

Physical Data Organization Physical Data Organization Database design using logical model of the database - appropriate level for users to focus on - user independence from implementation details Performance - other major factor

More information

Stacks. Linear data structures

Stacks. Linear data structures Stacks Linear data structures Collection of components that can be arranged as a straight line Data structure grows or shrinks as we add or remove objects ADTs provide an abstract layer for various operations

More information

Quiz 4 Solutions EECS 211: FUNDAMENTALS OF COMPUTER PROGRAMMING II. 1 Q u i z 4 S o l u t i o n s

Quiz 4 Solutions EECS 211: FUNDAMENTALS OF COMPUTER PROGRAMMING II. 1 Q u i z 4 S o l u t i o n s Quiz 4 Solutions Q1: What value does function mystery return when called with a value of 4? int mystery ( int number ) { if ( number

More information

Stacks. Stacks (and Queues) Stacks. q Stack: what is it? q ADT. q Applications. q Implementation(s) CSCU9A3 1

Stacks. Stacks (and Queues) Stacks. q Stack: what is it? q ADT. q Applications. q Implementation(s) CSCU9A3 1 Stacks (and Queues) 1 Stacks Stack: what is it? ADT Applications Implementation(s) 2 CSCU9A3 1 Stacks and ueues A stack is a very important data structure in computing science. A stack is a seuence of

More information

A TOOL FOR DATA STRUCTURE VISUALIZATION AND USER-DEFINED ALGORITHM ANIMATION

A TOOL FOR DATA STRUCTURE VISUALIZATION AND USER-DEFINED ALGORITHM ANIMATION A TOOL FOR DATA STRUCTURE VISUALIZATION AND USER-DEFINED ALGORITHM ANIMATION Tao Chen 1, Tarek Sobh 2 Abstract -- In this paper, a software application that features the visualization of commonly used

More information

Linked Lists, Stacks, Queues, Deques. It s time for a chainge!

Linked Lists, Stacks, Queues, Deques. It s time for a chainge! Linked Lists, Stacks, Queues, Deques It s time for a chainge! Learning Goals After this unit, you should be able to... Differentiate an abstraction from an implementation. Define and give examples of problems

More information

Exam study sheet for CS2711. List of topics

Exam study sheet for CS2711. List of topics Exam study sheet for CS2711 Here is the list of topics you need to know for the final exam. For each data structure listed below, make sure you can do the following: 1. Give an example of this data structure

More information

Data Structures, Practice Homework 3, with Solutions (not to be handed in)

Data Structures, Practice Homework 3, with Solutions (not to be handed in) Data Structures, Practice Homework 3, with Solutions (not to be handed in) 1. Carrano, 4th edition, Chapter 9, Exercise 1: What is the order of each of the following tasks in the worst case? (a) Computing

More information

ML for the Working Programmer

ML for the Working Programmer ML for the Working Programmer 2nd edition Lawrence C. Paulson University of Cambridge CAMBRIDGE UNIVERSITY PRESS CONTENTS Preface to the Second Edition Preface xiii xv 1 Standard ML 1 Functional Programming

More information

Load balancing Static Load Balancing

Load balancing Static Load Balancing Chapter 7 Load Balancing and Termination Detection Load balancing used to distribute computations fairly across processors in order to obtain the highest possible execution speed. Termination detection

More information

Embedded Systems. Review of ANSI C Topics. A Review of ANSI C and Considerations for Embedded C Programming. Basic features of C

Embedded Systems. Review of ANSI C Topics. A Review of ANSI C and Considerations for Embedded C Programming. Basic features of C Embedded Systems A Review of ANSI C and Considerations for Embedded C Programming Dr. Jeff Jackson Lecture 2-1 Review of ANSI C Topics Basic features of C C fundamentals Basic data types Expressions Selection

More information

Java Software Structures

Java Software Structures INTERNATIONAL EDITION Java Software Structures Designing and Using Data Structures FOURTH EDITION John Lewis Joseph Chase This page is intentionally left blank. Java Software Structures,International Edition

More information

ALLIED PAPER : DISCRETE MATHEMATICS (for B.Sc. Computer Technology & B.Sc. Multimedia and Web Technology)

ALLIED PAPER : DISCRETE MATHEMATICS (for B.Sc. Computer Technology & B.Sc. Multimedia and Web Technology) ALLIED PAPER : DISCRETE MATHEMATICS (for B.Sc. Computer Technology & B.Sc. Multimedia and Web Technology) Subject Description: This subject deals with discrete structures like set theory, mathematical

More information

Data Structures. Chapter 8

Data Structures. Chapter 8 Chapter 8 Data Structures Computer has to process lots and lots of data. To systematically process those data efficiently, those data are organized as a whole, appropriate for the application, called a

More information

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89 by Joseph Collison Copyright 2000 by Joseph Collison All rights reserved Reproduction or translation of any part of this work beyond that permitted by Sections

More information

Efficient Data Structures for Decision Diagrams

Efficient Data Structures for Decision Diagrams Artificial Intelligence Laboratory Efficient Data Structures for Decision Diagrams Master Thesis Nacereddine Ouaret Professor: Supervisors: Boi Faltings Thomas Léauté Radoslaw Szymanek Contents Introduction...

More information

GRAPH THEORY LECTURE 4: TREES

GRAPH THEORY LECTURE 4: TREES GRAPH THEORY LECTURE 4: TREES Abstract. 3.1 presents some standard characterizations and properties of trees. 3.2 presents several different types of trees. 3.7 develops a counting method based on a bijection

More information

Load Balancing and Termination Detection

Load Balancing and Termination Detection Chapter 7 slides7-1 Load Balancing and Termination Detection slides7-2 Load balancing used to distribute computations fairly across processors in order to obtain the highest possible execution speed. Termination

More information

BCS2B02: OOP Concepts and Data Structures Using C++

BCS2B02: OOP Concepts and Data Structures Using C++ SECOND SEMESTER BCS2B02: OOP Concepts and Data Structures Using C++ Course Number: 10 Contact Hours per Week: 4 (2T + 2P) Number of Credits: 2 Number of Contact Hours: 30 Hrs. Course Evaluation: Internal

More information

To My Parents -Laxmi and Modaiah. To My Family Members. To My Friends. To IIT Bombay. To All Hard Workers

To My Parents -Laxmi and Modaiah. To My Family Members. To My Friends. To IIT Bombay. To All Hard Workers To My Parents -Laxmi and Modaiah To My Family Members To My Friends To IIT Bombay To All Hard Workers Copyright 2010 by CareerMonk.com All rights reserved. Designed by Narasimha Karumanchi Printed in

More information

Lecture Notes on Binary Search Trees

Lecture Notes on Binary Search Trees Lecture Notes on Binary Search Trees 15-122: Principles of Imperative Computation Frank Pfenning André Platzer Lecture 17 October 23, 2014 1 Introduction In this lecture, we will continue considering associative

More information

Data Structures and Algorithms V22.0102. Otávio Braga

Data Structures and Algorithms V22.0102. Otávio Braga Data Structures and Algorithms V22.0102 Otávio Braga We use a stack When an operand is read, output it When an operator is read Pop until the top of the stack has an element of lower precedence Then push

More information

Abstract Data Type. EECS 281: Data Structures and Algorithms. The Foundation: Data Structures and Abstract Data Types

Abstract Data Type. EECS 281: Data Structures and Algorithms. The Foundation: Data Structures and Abstract Data Types EECS 281: Data Structures and Algorithms The Foundation: Data Structures and Abstract Data Types Computer science is the science of abstraction. Abstract Data Type Abstraction of a data structure on that

More information

International Journal of Software and Web Sciences (IJSWS) www.iasir.net

International Journal of Software and Web Sciences (IJSWS) www.iasir.net International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) ISSN (Print): 2279-0063 ISSN (Online): 2279-0071 International

More information