Can anyone suggest an algorithm to convert a Binary Search Tree to a singly linked list.
Also note that at each step of conversion the highest values node in the list should point to the smallest valued node in the list.
Can anyone suggest an algorithm to convert a Binary Search Tree to a singly
Share
This conforms to a singly linked list and the maximum value in the list always points to the least value in the list. No other qualifications were given.