File tree 1 file changed +29
-1
lines changed
1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -279,7 +279,35 @@ int q_ascend(struct list_head *head)
279
279
int q_descend (struct list_head * head )
280
280
{
281
281
// 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 );
283
311
}
284
312
285
313
/* Merge all the queues into one sorted queue, which is in ascending/descending
You can’t perform that action at this time.
0 commit comments