// 单向循环链表长度
public static int getCircleLinkListSize(ListNode head) {
if (head == null) {
return 0;
}
ListNode point = head;
int i = 0;
while (point != null && point.next != head) {
i ++;
point = point.next;
}
return i + 1;
}
```
```