-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathCountNodes.cpp
41 lines (34 loc) · 953 Bytes
/
CountNodes.cpp
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
#include <iostream>
using namespace std;
struct Node{ // Node declaration
int data;
struct Node *next;
Node(int x){
data=x;
next=NULL;
}
};
int CountElements(Node *head){ // Count function
int count=0;
struct Node *curr= head; // Creating a new pointer curr to store address of head
while(curr!=NULL){ //traversing till the end of linked list throught curr pointer
curr=curr->next;
count++; // incrementing count to count number of nodes traversed
}
return count;
}
int main()
{
int data,n;
cin>>n; // number of elements in linked list
cin>>data;
struct Node *head= new Node(data);
struct Node *tail= head;
for(int i=0;i<n-1;i++){
cin>>data; // taking input of values of linked list
tail->next=new Node(data);
tail=tail->next;
}
cout<<CountElements(head)<<endl;
return 0;
}