mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-07-10 02:56:54 +00:00
[PR #886] [CLOSED] Algorithm to Split linked list into even and odd integers linked list. #1403
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/886
Author: @the-suman
Created: 10/15/2021
Status: ❌ Closed
Base:
master← Head:master📝 Commits (3)
579a044Algorithm to Split linked list into even and odd integers linked list.38bf06dMerge branch 'TheAlgorithms:master' into master74a4602Added documentation and test cases📊 Changes
1 file changed (+169 additions, -0 deletions)
View changed files
➕
data_structures/linked_list/split_linked_list_even_odd.c(+169 -0)📄 Description
Added an algorithm in C for splitting the given linked list into even and odd integer linked list.
As for example:-
Suppose my given linked list is: 12 45 30 7 10000 789
Then the result will be:
The even integer linked list is: 12 30 10000
The odd integer linked list is: 45 7 789
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.