标签: c++
我想知道C ++中链表中这一行的含义。
i = (i == NULL)? Head : i->Next;
答案 0 :(得分:5)
这是三元运营商。
If i is NULL then i = Head else i = i->Next