C Algorithm - Write a function to delete a Linked List - Linked List - Iterate through the linked list and delete all the nodes one by one.
Category - C Programming
C Algorithm - Reverse a stack using recursion - Data Structure - Write a program to reverse a stack using recursion. You are not allowed to use
C Algorithm - Find n’th node from the end of a Linked List - Linked List - Given a Linked List and a number n, write a function that returns the value
C Algorithm - Find the middle of a given linked list - Linked List - Given a singly linked list, find middle of the linked list
C Program Find the node with minimum value in a Binary Search Tree-Binary Search Tree-. traverse the node from root to left recursively until left is NULL.
How to write C functions that modify head pointer of a Linked List? - Linked List - Consider simple representation (without any dummy node)
C Algorithm - Search an element in a Linked List both Iterative and Recursive - Linked List - Write a C function that searches a given key ‘x’ in a given
C Algorithm - Find Length of a Linked List both Iterative and Recursive - Linked List - Write a C function to count number of nodes in a given singly
C Programming - Binary Tree (Introduction) - A tree whose elements have at most 2 children is called a binary tree. Since each element in a binary tree can
C Algorithm - Delete a Linked List node at a given position - Linked List - Given a singly linked list and a position, delete a linked list