-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinked_list_print_recursion.cpp
More file actions
66 lines (51 loc) · 991 Bytes
/
linked_list_print_recursion.cpp
File metadata and controls
66 lines (51 loc) · 991 Bytes
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
#include <bits/stdc++.h>
using namespace std;
struct Node
{
int data;
Node* next;
};
struct Node* Insert(struct Node* head, int data, int n){
Node* temp1 = new Node();
temp1 -> data = data;
temp1 -> next = NULL;
if (n==1)
{
temp1 -> next = head;
head =temp1;
return head;
}
Node* temp2 = head;
for (int i = 0; i < n-2; i++)
{
temp2 = temp2 -> next;
}
temp1 -> next = temp2 -> next;
temp2 -> next = temp1;
return head;
}
void Print(struct Node* head) {
if (head==NULL) return;
cout << head-> data << " ";
Print(head -> next);
}
void RevPrint(struct Node* head) {
if (head==NULL){return;}
RevPrint(head -> next);
cout << head-> data << " ";
}
int main(int argc, char const *argv[])
{
Node* head = NULL;
head = Insert(head, 1,1);
head = Insert(head, 3,1);
head = Insert(head, 4,2);
head = Insert(head, 6,1);
head = Insert(head, 7,4);
head = Insert(head, 8,3);
Print(head);
cout << endl;
RevPrint(head);
cout << endl;
return 0;
}