-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLinked List implementation.cs
152 lines (132 loc) · 3.1 KB
/
Linked List implementation.cs
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
using System;
class Solution
{
static void Main(string[] args)
{
// testing it
LinkedList list = new LinkedList();
list.Append(7);
list.Append(3);
list.Append(2);
list.Append(6);
list.Append(8);
list.Append(10);
list.Remove(10);
list.Display();
}
}
public class LinkedList
{
class Node
{
public int data;
public Node next;
public Node(int val)
{
data = val;
next = null;
}
}
Node head = null;
public void Append(int val)
{
Node newNode = new Node(val);
if (head == null)
{
head = newNode;
}
else
{
Node temp = head;
while (temp.next != null)
{
temp = temp.next;
}
temp.next = newNode;
}
}
public void Insert_at_pos(int val, int pos)
{
Node newNode = new Node(val);
if (pos == 0)
{
newNode.next = head;
head = newNode;
return;
}
Node temp = head;
for (int i = 0; i < pos - 1 && temp.next != null; i++) // to get the node before target node , second condition to make sure it's still at range of linkedlist
{
temp = temp.next;
}
newNode.next = temp.next;
temp.next = newNode;
}
public void Display()
{
Node temp = head;
while (temp != null)
{
Console.WriteLine(temp.data);
temp = temp.next;
}
}
public void Remove(int val)
{
if (head == null)
return;
Node prev, temp;
prev = temp = head;
if (temp.data == val)
{
head = temp.next;
return;
}
while (temp != null && temp.data != val)
{
prev = temp;
temp = temp.next;
}
if (temp == null)
return;
else
prev.next = temp.next;
}
public void Remove_at_pos(int pos)
{
if (head == null)
return;
if (pos == 0)
{
head = head.next;
}
else
{
Node temp = head;
for (int i = 0; i < pos - 1 && temp.next != null; i++) // to get the node before target node , second condition to make sure it's still at range of linkedlist
{
temp = temp.next;
}
if (temp.next == null) { return; } // if user entered pos out the range of linked list
temp.next = temp.next.next;
}
}
public void Reverse()
{
if (head == null)
return;
Node prev, curr, next;
prev = next = null;
curr = head;
while (curr != null) // not reached to last element
{
// Links Controll
next = curr.next;
curr.next = prev;
prev = curr;
curr = next;
}
// move head to pointer on last element
head = prev;
}
}