forked from yuyongwei/Algorithms-In-Swift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
designLinkedList.java
133 lines (118 loc) · 3.81 KB
/
designLinkedList.java
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
/*
Design your implementation of the linked list. You can choose to use the singly linked list or the doubly linked list. A node in a singly linked list should have two attributes: val and next. val is the value of the current node, and next is a pointer/reference to the next node. If you want to use the doubly linked list, you will need one more attribute prev to indicate the previous node in the linked list. Assume all nodes in the linked list are 0-indexed.
Implement these functions in your linked list class:
get(index) : Get the value of the index-th node in the linked list. If the index is invalid, return -1.
addAtHead(val) : Add a node of value val before the first element of the linked list. After the insertion, the new node will be the first node of the linked list.
addAtTail(val) : Append a node of value val to the last element of the linked list.
addAtIndex(index, val) : Add a node of value val before the index-th node in the linked list. If index equals to the length of linked list, the node will be appended to the end of linked list. If index is greater than the length, the node will not be inserted.
deleteAtIndex(index) : Delete the index-th node in the linked list, if the index is valid.
https://leetcode.com/problems/design-linked-list/
*/
class MyLinkedList {
/** Initialize your data structure here. */
int length;
Node head;
class Node {
int val;
Node next;
Node(int x) {
this.val = x;
}
}
public MyLinkedList(){
this.length = 0;
this.head = null;
}
/** Get the value of the index-th node in the linked list. If the index is invalid, return -1. */
public int get(int index) {
if(index < 0 || index >= this.length) {
return -1;
}
else {
int counter = 0;
Node curr = head;
while(counter != (index)) {
curr = curr.next;
counter++;
}
return curr.val;
}
}
/** Add a node of value val before the first element of the linked list. After the insertion, the new node will be the first node of the linked list. */
public void addAtHead(int val) {
Node newNode = new Node(val);
newNode.next = this.head;
this.head = newNode;
this.length++;
}
/** Append a node of value val to the last element of the linked list. */
public void addAtTail(int val) {
if(this.length == 0) {
addAtHead(val);
return;
}
Node newNode = new Node(val);
Node temp = head;
while(temp.next != null) {
temp = temp.next;
}
temp.next = newNode;
newNode.next = null;
this.length++;
}
/** Add a node of value val before the index-th node in the linked list. If index equals to the length of linked list, the node will be appended to the end of linked list. If index is greater than the length, the node will not be inserted. */
public void addAtIndex(int index, int val) {
Node newNode = new Node(val);
Node temp = head;
int counter = 0;
if((index) == this.length) {
addAtTail(val);
return;
}
if(index > this.length) {
return;
}
if(index == 0){
addAtHead(val);
return;
}
while(counter != (index -1)) {
temp = temp.next;
counter++;
}
newNode.next = temp.next;
temp.next = newNode;
this.length++;
}
/** Delete the index-th node in the linked list, if the index is valid. */
public void deleteAtIndex(int index) {
if(index < 0 || index >= this.length) {
return;
}
Node curr = head;
if(index == 0) {
head = curr.next;
}
else {
Node current = head;
Node pre = null;
int counter =0;
while(counter != index) {
pre = current;
current = current.next;
counter++;
}
pre.next = current.next;
this.length--;
}
}
}
/**
* Your MyLinkedList object will be instantiated and called as such:
* MyLinkedList obj = new MyLinkedList();
* int param_1 = obj.get(index);
* obj.addAtHead(val);
* obj.addAtTail(val);
* obj.addAtIndex(index,val);
* obj.deleteAtIndex(index);
*/