2299 Merge Nodes In Between Zeros
2299 Merge Nodes In Between Zeros
Merge Nodes in Between Zeros 
You are given the head of a linked list, which contains a series of integers separated by 0’s. The beginning and end of the linked list will have Node.val == 0.
For every **two consecutive 0’s, **merge all the nodes lying in between them into a single node whose value is the sum of all the merged nodes. The modified list should not contain any 0’s.
Return the head of the modified linked list.
Example 1:
1
2
3
4
5
6
7
8
**Input:** head = [0,3,1,0,4,5,2,0]
**Output:** [4,11]
**Explanation:**
The above figure represents the given linked list. The modified list contains
- The sum of the nodes marked in green: 3 + 1 = 4.
- The sum of the nodes marked in red: 4 + 5 + 2 = 11.
Example 2:
1
2
3
4
5
6
7
8
9
**Input:** head = [0,1,0,3,0,2,2,0]
**Output:** [1,3,4]
**Explanation:**
The above figure represents the given linked list. The modified list contains
- The sum of the nodes marked in green: 1 = 1.
- The sum of the nodes marked in red: 3 = 3.
- The sum of the nodes marked in yellow: 2 + 2 = 4.
Constraints:
1
2
3
4
The number of nodes in the list is in the range [3, 2 * 105].
0 <= Node.val <= 1000
There are **no** two consecutive nodes with Node.val == 0.
The **beginning** and **end** of the linked list have Node.val == 0.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
int merge(struct ListNode* temp1, struct ListNode* temp2){
int s = 0;
struct ListNode* temp3 = temp1->next;
while(temp3 != temp2){
//printf("%d", temp3->val);
s += (temp3->val);
temp3 = temp3->next;
}
return s;
}
struct ListNode* mergeNodes(struct ListNode* head) {
struct ListNode* temp1 = head;
struct ListNode* temp2 = head;
struct ListNode* result = malloc(sizeof(struct ListNode));
struct ListNode* result2 = result;
struct ListNode* result3 = result;
while(temp2 != NULL) {
//printf("%d %d\n", temp1->val, temp2->val);
if (temp1->val != 0 && temp2->val != 0) {
temp1 = temp1->next;
temp2 = temp2->next;
continue;
}
if (temp1->val != 0 ){
temp1 = temp1->next;
continue;
}
if (temp2->val != 0) {
temp2 = temp2->next;
continue;
}
if (temp1 == temp2 && temp1->val == 0) {
temp2 = temp2->next;
continue;
}
if (temp1->val == 0 && temp2->val == 0) {
//merge
int s = merge(temp1, temp2);
//printf("%d--\n", s);
result2->val = s;
result2->next = malloc(sizeof(struct ListNode));
result3 = result2;
result2 = result2->next;
temp1 = temp1->next;
temp2 = temp2->next;
//printf("%d --%d\n", temp1->val, temp2->val);
}
}
result3->next= NULL;
return result;
}
This post is licensed under CC BY 4.0 by the author.

