Tag Archives: c singly linked list

C Program to find merge point of two single linked lists

Find merge point of two single linked lists Write a C Program to find merge point of two single linked lists. Here’s simple Program to find merge point of two single linked lists in C Programming Language. What is Linked List ? Linked list is a linear data structure that contains sequence of elements such that… Read More »

Write a C Program to check linked list is Palindrome or not

Check linked list is Palindrome or not Write a C Program to check linked list is Palindrome or not. Here’s simple Program to check linked list is Palindrome or not in C Programming Language. What is Linked List ? Linked list is a linear data structure that contains sequence of elements such that each element links to… Read More »

C Program to Merge alternate nodes of two single linked lists

Merge alternate nodes of two single linked lists Write a C Program to Merge alternate nodes of two single linked lists. Here’s simple Program to Merge alternate nodes of two single linked lists in C Programming Language. What is Linked List ? Linked list is a linear data structure that contains sequence of elements such that… Read More »

C Program to split list such that alternate nodes go to different lists

Split list s.t alternate nodes go to different lists Write a C Program to split list into two lists such that alternate nodes go to different lists. Here’s simple Program to split list into two lists  such that alternate nodes go to different list in C Programming Language. What is Linked List ? Linked list is… Read More »

Write a C Program to Split linked list into two lists after given node

Split linked list into two lists after given node Write a C Program to Split linked list into two lists after given node. Here’s simple Program to Split linked list into two lists after given node in C Programming Language. What is Linked List ? Linked list is a linear data structure that contains sequence of… Read More »

Write a C Program to Split single linked list into two halves

Split single linked list into two halves Write a C Program to Split single linked list into two halves. Here’s simple Program to Split single linked list into two halves in C Programming Language. What is Linked List ? Linked list is a linear data structure that contains sequence of elements such that each element links… Read More »

Write a C Program to find middle node in a single linked list

Find middle node in a single linked list Write a C Program to find middle node in a single linked list. Here’s simple Program to find middle node in a single linked list in C Programming Language. What is Linked List ? Linked list is a linear data structure that contains sequence of elements such that… Read More »

C Program for Detect and Remove cycle in a single linked list

Detect and Remove cycle in a single linked list Write a C Program for Detect and Remove cycle in a single linked list. Here’s simple Program for Detect and Remove cycle in a single linked list in C Programming Language. What is Linked List ? Linked list is a linear data structure that contains sequence of… Read More »

C Program to find Nth node from end of a singly linked list

Find Nth node from end of a singly linked list Write a C Program to find Nth node from end of a singly linked list. Here’s simple Program to find Nth node from end of a singly linked list in C Programming Language. What is Linked List ? Linked list is a linear data structure… Read More »

Write a C Program to split linked list into Even and Odd linked lists

C Program to split linked list into Even and Odd lists Write a C Program to split linked list into Even and Odd linked lists. Here’s simple Program to split linked list into Even and Odd linked lists in C Programming Language. What is Linked List ? Linked list is a linear data structure that contains… Read More »