Skip to content

Commit 99644bf

Browse files
committed
Rewrite 'q_delete_dup'
Improve time efficiency Change-Id: I1cca8c5eeb6cc4d4c8799d6835851d9f9620d7f5
1 parent 43eb2f7 commit 99644bf

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

queue.c

+12-9
Original file line numberDiff line numberDiff line change
@@ -176,26 +176,29 @@ bool q_delete_dup(struct list_head *head)
176176
if (!head || list_empty(head)) /* input validation */
177177
return false;
178178

179-
bool flag = false;
180179
element_t *curr_entry = list_first_entry(head, element_t, list);
181-
element_t *next_entry;
182-
183180
while (&curr_entry->list != head) {
184-
next_entry = list_entry(curr_entry->list.next, element_t, list);
181+
struct list_head *next = curr_entry->list.next;
182+
element_t *next_entry = list_entry(next, element_t, list);
185183

184+
/* check if there is duplicate element */
185+
bool check = false;
186186
while (&next_entry->list != head &&
187187
!strcmp(curr_entry->value, next_entry->value)) {
188+
struct list_head *tmp = next_entry->list.next;
188189
list_del(&next_entry->list);
189190
q_release_element(next_entry);
190-
/* update next pointer */
191-
next_entry = list_entry(curr_entry->list.next, element_t, list);
192-
flag = true;
191+
next_entry = list_entry(tmp, element_t, list);
192+
check = true;
193193
}
194194

195-
if (flag) { /*need remove current node*/
195+
if (check) {
196+
struct list_head *tmp = curr_entry->list.next;
196197
list_del(&curr_entry->list);
197198
q_release_element(curr_entry);
198-
flag = false;
199+
curr_entry = list_entry(tmp, element_t, list);
200+
} else {
201+
curr_entry = next_entry;
199202
}
200203
}
201204
return true;

0 commit comments

Comments
 (0)