我在leetcode解决方案中看到了以下代码段。它计算链表中的元素数。 while语句只有一个赋值操作。谁能解释一下这是如何工作的。
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
struct ListNode * temp = head;
int num = 1;
while(temp = temp->next){
num++;
}
答案 0 :(得分:2)
temp->next
的值已分配给temp
while(temp)
(temp != NULL
)注意:如果head
为NULL,程序将面临运行时错误