Open Palak2801 opened 3 years ago
Segregate odd and even numbers in linked list. In this problem we need to place all even data nodes before odd data nodes following same order.
Example, Linked List is : -->1-->6-->8-->7-->9-->NULL Linked List after segregation : -->6-->8-->1-->7-->9->NULL
Describe the solution you'd like Implementation using C
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
Additional context Add any other context or screenshots about the feature request here.
@Ayush7614 @Amit366 @ravikr126 @Saurabh4626 , Kindly assign me this issue using C under LGMSOC
@Ayush7614 @ravikr126 kindly assign me this issue using c++ under lgmsoc21
Segregate odd and even numbers in linked list. In this problem we need to place all even data nodes before odd data nodes following same order.
Example, Linked List is : -->1-->6-->8-->7-->9-->NULL Linked List after segregation : -->6-->8-->1-->7-->9->NULL
Describe the solution you'd like Implementation using C
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
Additional context Add any other context or screenshots about the feature request here.
Programming language