Skip to content

Commit 264c905

Browse files
committed
Wrong implementation of 'q_delete_dup'
This modification is used to analysis error and performance of wrong implementation of 'q_delete_dup'. Change-Id: Ida368515871e9535eaa0bf4898c1ab435f021b7a
1 parent d0d3411 commit 264c905

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

queue.c

+8-15
Original file line numberDiff line numberDiff line change
@@ -160,33 +160,26 @@ bool q_delete_dup(struct list_head *head)
160160
// https://leetcode.com/problems/remove-duplicates-from-sorted-list-ii/
161161
volatile struct list_head *dummy = head;
162162
(void) dummy;
163-
164163
if (!head || list_empty(head)) /* input validation */
165164
return false;
166165

166+
bool flag = false;
167167
element_t *curr_entry = list_first_entry(head, element_t, list);
168+
element_t *next_entry;
168169
while (&curr_entry->list != head) {
169-
struct list_head *next = curr_entry->list.next;
170-
element_t *next_entry = list_entry(next, element_t, list);
171-
172-
/* check if there is duplicate element */
173-
bool check = false;
170+
next_entry = list_entry(curr_entry->list.next, element_t, list);
174171
while (&next_entry->list != head &&
175172
!strcmp(curr_entry->value, next_entry->value)) {
176-
struct list_head *tmp = next_entry->list.next;
177173
list_del(&next_entry->list);
178174
q_release_element(next_entry);
179-
next_entry = list_entry(tmp, element_t, list);
180-
check = true;
175+
/* update next pointer */
176+
next_entry = list_entry(curr_entry->list.next, element_t, list);
177+
flag = true;
181178
}
182-
183-
if (check) {
184-
struct list_head *tmp = curr_entry->list.next;
179+
if (flag) { /*need remove current node*/
185180
list_del(&curr_entry->list);
186181
q_release_element(curr_entry);
187-
curr_entry = list_entry(tmp, element_t, list);
188-
} else {
189-
curr_entry = next_entry;
182+
flag = false;
190183
}
191184
}
192185
return true;

0 commit comments

Comments
 (0)