Skip to content

Commit dc3ee24

Browse files
committed
Implement 'q_descend'
Implement 'q_descend' function using the Linux Kernel API. Change-Id: I0d5b959f7c97d8656856acf7db49d0f19a5289dc
1 parent 07faa59 commit dc3ee24

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

queue.c

+29-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,35 @@ int q_ascend(struct list_head *head)
279279
int q_descend(struct list_head *head)
280280
{
281281
// https://leetcode.com/problems/remove-nodes-from-linked-list/
282-
return 0;
282+
element_t *curr = NULL, *prev = NULL;
283+
const element_t *target;
284+
struct list_head *pos = NULL;
285+
286+
if (!head || list_empty(head) || list_is_singular(head))
287+
return 0;
288+
289+
list_for_each_entry (curr, head, list) {
290+
/* Release the element in the next round */
291+
if (prev) {
292+
q_release_element(prev);
293+
prev = NULL;
294+
}
295+
296+
297+
/* check right side and find if there is greater value */
298+
if (curr->list.next)
299+
pos = curr->list.next;
300+
for (; pos != head; pos = pos->next) {
301+
target = list_entry(pos, element_t, list);
302+
if (strcmp(curr->value, target->value) < 0) {
303+
list_del(&curr->list);
304+
prev = curr;
305+
break;
306+
}
307+
}
308+
}
309+
310+
return q_size(head);
283311
}
284312

285313
/* Merge all the queues into one sorted queue, which is in ascending/descending

0 commit comments

Comments
 (0)