Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added code for searching in a link list #82

Merged
merged 1 commit into from
Oct 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
60 changes: 60 additions & 0 deletions linklist/search.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
#include <iostream>
using namespace std;

class Node{
public:
int data;
Node* next;
Node(int d){
data = d;
next = NULL;
}
};

Node* insertAtEnd(Node* head, int x, Node* &tail){
if (head == NULL){
head = new Node(x);
tail = head;
return head;
}

tail->next = new Node(x);
tail = tail->next;
return head;
}

Node* createLL(){
int x;
Node* head = NULL;
Node* tail = NULL;

while(true){
cin >> x;
if (x == -1) break;
head = insertAtEnd(head, x, tail);
}
return head;
}

int searchLL(Node* head,int data){
Node* cur = head;
int count=0;
while(cur != NULL){
count++;
if(cur->data==data){
return count;
}
}
return -1;
}
int main(){
//enter -1 for last number
Node* head=createLL();
//To search an element in link list use searchLL if not present it will return -1
// otherwise it will return index of element in linked list
int data;
cout<<"enter the element data to be searched"<<endl;
cin >> data;
int index=searchLL(head,data);
cout<<"element present at index "<<index;
}
Binary file added prefect_square/.DS_Store
Binary file not shown.