FAL 第12期 關(guān)系網(wǎng)絡(luò)及其金融實戰(zhàn)應(yīng)用
?} else {
? ? ? ? ? ? ? ?if (currentNode.val == value) {
? ? ? ? ? ? ? ? ? ?prevNode.next = nextNode;
? ? ? ? ? ? ? ? ? ?currentNode.next = null;
? ? ? ? ? ? ? ?} else {
? ? ? ? ? ? ? ? ? ?prevNode = currentNode;
? ? ? ? ? ? ? ?}
? ? ? ? ? ?}
? ? ? ? ? ?currentNode = nextNode;
? ? ? ?}
? ?}
? ?public int getLength() {
? ? ? ?return length;
? ?}
? ?public int getLengthByTraverse() {
? ? ? ?int len = 0;
? ? ? ?ListNode currentNode = head;
? ? ? ?while (currentNode != null) {
? ? ? ? ? ?len++;
標簽: