-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNumLinkedList.java
90 lines (77 loc) · 1.94 KB
/
NumLinkedList.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
public class NumLinkedList {
Node head;
Node tail;
Sign sign;
int count;
public NumLinkedList() {
head = null;
tail = null;
sign = Sign.PLUS;
count = 0;
}
public void createListOfDigit(String numStr) {
if (numStr.charAt(0) == '-') {
sign = Sign.MINUS;
}
for (int i = 0; i < numStr.length(); i++) {
char cur = numStr.charAt(i);
if (cur >= '0' && cur <= '9') {
byte num = (byte) (cur - '0');
addDigit(num);
}
}
}
public void calculateSign(Sign sign) {
if (sign == Sign.MINUS) {
if (this.sign == Sign.MINUS) {
this.sign = Sign.PLUS;
} else {
this.sign = Sign.MINUS;
}
}
}
public void addDigit(byte val) {
count++;
Node node = new Node(val);
if (head == null) {
head = tail = node;
return;
}
node.prev = tail;
tail.next = node;
tail = node;
}
public void addFront(byte val) {
count++;
Node node = new Node(val);
if (head == null) {
head = tail = node;
return;
}
node.next = head;
head.prev = node;
head = node;
}
public void removeLeadingZeros() {
while (head != null && head.next != null && head.data == 0) {
head = head.next;
count--;
}
}
public int getCount() {
return count;
}
@Override
public String toString() {
Node tmp = head;
StringBuilder stringBuilder = new StringBuilder();
if (sign == Sign.MINUS) {
stringBuilder.append(sign);
}
while (tmp != null) {
stringBuilder.append(String.valueOf(tmp.data));
tmp = tmp.next;
}
return stringBuilder.toString();
}
}