Follow

Translate

Sunday, March 20, 2016

Deleting the Node with a Given ITEM of Information




1.        [List empty?]  If START = NULL, then:
               Set   LOC: = NULL and LOCP : = NULL, and Return.
[End of If Structure.]

2.  [ITEM in first node?]    If  INFO[START] = ITEM, then:
        Set LOC : = START and LOCP = NULL, and Return.

[End of IF Structure]

3.   Set SAVE : = START and PTR : = LINK[START].     [Initialize Pointer]

4.   Repeat Steps 5 and 6 while PTR != NULL.

5.   If INFO[PTR] = ITEM, then:
     Set LOC : = PTR and LOCP : = SAVE , and Return.

[End of If Structure]

6.   Set SAVE : = PTR and PTR : = LINK[PTR].     [Update Pointer]

   [End of Step 4 loop]

7.   Set LOC : = NULL.      [Search Unsuccessful]

8.   Return.
If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • What is underflow? Underflow:  The term underflow refers to the situation where one wants to delete data from a data structure that is empty, The programmer may handle underflow by printing the message UNDERFLOW If You want to learn abou… Read More
  • Two basic Operation Of Stack Two basic Operation Of Stack:   (a) "PUSH" is the term used to insert an element into a stack. (b) "POP"   is the term used to remove an element into a stack. If You want to learn about the technol… Read More
  • Traversing Binary Tree Traversing Binary Tree: There are three standard ways of traversing a binary tree T with root R. These three algorithms, called preorder, inorder and postorder. Preorder:         &n… Read More
  • What is Recursion? Recursion:   A recursive must have two proprties (a)  There must be certain criteria, called base criteria, for which the procedure does not call itself. (b)  Each time the procedure does call itself (di… Read More
  • What is Binary Trees? Binary Trees:  A binary tree T is defined set of elements, called nodes, such that: (a) T is empty (called the null tree or empty tree), or (b) T constants a distinguished node R, called the root of T, and the remainin… Read More

0 comments:

Post a Comment