p1=p1->next
问题描述:
p1=p1->next
答
你的类型没写清楚
这应该是链表节点的指针吧
大意就是把p1保存到p2里面
然后把p1下一个节点(p1->next)保存到p1
一般是用来循环遍历链表吧