黑馬博學(xué)谷 基于微服務(wù)構(gòu)建閃聚支付項(xiàng)目
public int getLength() {
? ? ? ?return length;
? ?}
? ?public int getLengthByTraverse() {
? ? ? ?int len = 0;
? ? ? ?ListNode currentNode = head;
? ? ? ?while (currentNode != null) {
? ? ? ? ? ?len++;
? ? ? ? ? ?currentNode = currentNode.next;
? ? ? ?}
? ? ? ?return len;
? ?}
標(biāo)簽: