"Write an algorithm to test whether a given binary tree is a binary search tree."
21 January, 2022Write a C language function to find the in-order successor of the root of a binary tree.
21 January, 2022Write a C language function to delete the nth node of a singly-linked list. The error conditions are to be handled properly.
21 January, 2022What is an Abstract Data Type? What do you mean by a Dynamic Data Structure?
21 December, 2024Explain the mergesort algorithm.
Why does it run faster than bubble sort in most of the cases ? Show how the mergesort algorithm will sort the following array in increasing order :
100, 90, 80, 70, 60, 50, 40, 30, 20.
Analyses the time complexity of the mergesort algorithm.
21 December, 2024