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 Programming
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
C Algorithm – Evaluation of Postfix Expression – Data Structure -The Postfix notation is used to represent algebraic expressions.
C Algorithm – Infix to Postfix Conversion using Stack – Data Structure – Infix expression:The expression of the form a op b.