2181. 合并零之间的节点
题目链接:2181. 合并零之间的节点
代码如下:
cpp
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution
{
public:
ListNode* mergeNodes(ListNode* head)
{
ListNode* Head=new ListNode();
ListNode* p=Head;
while(head!=nullptr)
{
if(head->val==0)
{
head=head->next;
int sum=0;
while(head&&head->val!=0)
{
sum+=head->val;
head=head->next;
}
if(sum==0)
{
continue;
}
ListNode* node=new ListNode(sum);
p->next=node;
p=node;
}
}
return Head->next;
}
};