-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsortandinsert.cpp
110 lines (92 loc) · 3.27 KB
/
sortandinsert.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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// TODO : Write a JAVA program for the same.
// Insert value in sorted way in a sorted doubly linked list
// Given a sorted doubly linked list and a value to insert, write a function to insert the value in sorted way.
// Algorithm:
// Let input doubly linked list is sorted in increasing order.
// New node passed to the function contains data in the data part and previous and next link are set to NULL.
// sortedInsert(head_ref, newNode)
// if (head_ref == NULL)
// head_ref = newNode
// else if head_ref->data >= newNode->data
// newNode->next = head_ref
// newNode->next->prev = newNode
// head_ref = newNode
// else
// Initialize current = head_ref
// while (current->next != NULL and
// current->next->data data)
// current = current->next
// newNode->next = current->next
// if current->next != NULL
// newNode->next->prev = newNode
// current->next = newNode
// newNode->prev = current
#include <bits/stdc++.h>
using namespace std;
// Node of a doubly linked list
struct Node {
int data;
struct Node* prev, *next;
};
struct Node* getNode(int data) {
// allocate node
struct Node* newNode = (struct Node*)malloc(sizeof(struct Node));
// put in the data
newNode->data = data;
newNode->prev = newNode->next = NULL;
return newNode;
}
// function to insert a new node in sorted way in
// a sorted doubly linked list
void sortedInsert(struct Node** head_ref, struct Node* newNode) {
struct Node* current;
// if list is empty
if (*head_ref == NULL)
*head_ref = newNode;
// if the node is to be inserted at the beginning of the doubly linked list
else if ((*head_ref)->data >= newNode->data) {
newNode->next = *head_ref;
newNode->next->prev = newNode;
*head_ref = newNode;
}
else {
current = *head_ref;
// locate the node after which the new node is to be inserted
while (current->next != NULL && current->next->data < newNode->data)
current = current->next;
/* Make the appropriate links */
newNode->next = current->next;
// if the new node is not inserted at the end of the list
if (current->next != NULL)
newNode->next->prev = newNode;
current->next = newNode;
newNode->prev = current;
}
}
// function to print the doubly linked list
void printList(struct Node* head) {
while (head != NULL) {
cout << head->data << " ";
head = head->next;
}
}
int main() {
/* start with the empty doubly linked list */
struct Node* head = NULL;
// insert the following nodes in sorted way
struct Node* new_node = getNode(8);
sortedInsert(&head, new_node);
new_node = getNode(5);
sortedInsert(&head, new_node);
new_node = getNode(3);
sortedInsert(&head, new_node);
new_node = getNode(10);
sortedInsert(&head, new_node);
new_node = getNode(12);
sortedInsert(&head, new_node);
new_node = getNode(9);
sortedInsert(&head, new_node);
cout << "Created Doubly Linked List" << endl;
printList(head);
return 0;
}