Ayush7614 / Daily-Coding-DS-ALGO-Practice

A open source project🚀 for bringing all interview💥💥 and competative📘 programming💥💥 question under one repo📐📐
https://daily-ds-algo.github.io/DS-Algo-Website/
MIT License
322 stars 473 forks source link

Segregate even and odd numbers in a linked list #1513

Open Palak2801 opened 3 years ago

Palak2801 commented 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.

Programming language

Palak2801 commented 3 years ago

@Ayush7614 @Amit366 @ravikr126 @Saurabh4626 , Kindly assign me this issue using C under LGMSOC

khushboo2202 commented 3 years ago

@Ayush7614 @ravikr126 kindly assign me this issue using c++ under lgmsoc21