English

A linked list is formed from the objects of the class Node. The class structure of the Node is given below: class Node { int n; Node link; } Write an Algorithm OR a Method to search for a number - Computer Science (Theory)

Advertisements
Advertisements

Question

A linked list is formed from the objects of the class Node. The class structure of the Node is given below:

class Node
{
      int n;
      Node link;
}

Write an Algorithm OR a Method to search for a number from an existing linked list. The method declaration is as follows:

void FindNode( Node str, int b)

Answer in Brief

Solution

ALGORITHM:
    Step 1. Start
    Step 2. Set temporary pointer to the first node
    Step 3. Repeat steps 4 and 5 until the pointer reaches null. Display number not found
    Step 4. check for number, if found display, exit
    Step 5. Move pointer to the next node
    Step 6. End algorithm
METHOD:
    void FindNode(Node str, int b)
     {
      Node temp=str;
      while(temp.link!=null)
       {
       if(temp.n == b)
        {
        System.out.prinln(b+“is found”);
        break;
       }
        temp=temp.link;
       }
     if(temp.link= =null)
        System.out.prinln(b+“is not found”);
}
shaalaa.com
Recursive Data Structures - Single Linked List (Algorithm and Programming), Binary Trees, Tree Traversals (Conceptual)
  Is there an error in this question or solution?
2024-2025 (April) Specimen Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×