mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
changed brief
This commit is contained in:
parent
522183b96c
commit
81d568da82
@ -1,15 +1,13 @@
|
|||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
* \brief Threaded Binary Tree is a binary tree variant in which all left child
|
* \brief This file is a simple implementation of a Threaded Binary Tree
|
||||||
* pointers that are NULL (in Linked list representation) point to its
|
*
|
||||||
* in-order predecessor, and all right child pointers that are NULL
|
* It has the following functionalities:
|
||||||
* (in Linked list representation) point to its in-order successor.
|
|
||||||
* This file is a simple implementation of a Threaded Binary Tree
|
|
||||||
* with the following functionalities:
|
|
||||||
* - Insertion
|
* - Insertion
|
||||||
* - Search
|
* - Search
|
||||||
* - Deletion
|
* - Deletion
|
||||||
* - Listing of node keys inorder,preorder,postorder
|
* - Listing of node keys inorder,preorder,postorder
|
||||||
|
*
|
||||||
* \author [Amitha Nayak](https://github.com/amitnayakblr)
|
* \author [Amitha Nayak](https://github.com/amitnayakblr)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user