-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_node.c
81 lines (67 loc) · 1.81 KB
/
search_node.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <stdio.h>
#include <stdlib.h>
// Structure for a node in the linked list
struct Node {
int data;
struct Node* next;
};
// Function to create a new node
struct Node* createNode(int data) {
struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));
newNode->data = data;
newNode->next = NULL;
return newNode;
}
// Function to display the linked list
void displayList(struct Node* head) {
struct Node* temp = head;
while (temp != NULL) {
printf("%d ", temp->data);
temp = temp->next;
}
}
// Function to search for a given data in the linked list
struct Node* searchNode(struct Node* head, int data) {
struct Node* temp = head;
int count=0;
while (temp != NULL) {
count = count+1;
if (temp->data == data) {
printf("Element found at %d\n", count);
return temp;
}
temp = temp->next;
}
return NULL;
}
int main() {
int length;
printf("Enter the length of the linked list: ");
scanf("%d", &length);
struct Node* head = NULL;
struct Node* temp = NULL;
// Creating the linked list
for (int i = 0; i < length; i++) {
int data;
printf("Enter data for node %d: ", i + 1);
scanf("%d", &data);
struct Node* newNode = createNode(data);
if (head == NULL) {
head = newNode;
temp = newNode;
} else {
temp->next = newNode;
temp = newNode;
}
}
printf("Linked list created: ");
displayList(head);
int searchData;
printf("\nEnter the data to search in the linked list: ");
scanf("%d", &searchData);
struct Node* searchResult = searchNode(head, searchData);
if (searchResult == NULL) {
printf("Data not found in the linked list.");
}
return 0;
}