From 81d568da821a806a8714fe0886f731de0ade0ffe Mon Sep 17 00:00:00 2001 From: Amit Date: Thu, 11 Jun 2020 20:04:08 +0530 Subject: [PATCH] changed brief --- data_structures/binary_trees/threaded_binary_trees.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/data_structures/binary_trees/threaded_binary_trees.c b/data_structures/binary_trees/threaded_binary_trees.c index 4f610b98..1f62788d 100644 --- a/data_structures/binary_trees/threaded_binary_trees.c +++ b/data_structures/binary_trees/threaded_binary_trees.c @@ -1,15 +1,13 @@ /** * @file - * \brief Threaded Binary Tree is a binary tree variant in which all left child - * pointers that are NULL (in Linked list representation) point to its - * in-order predecessor, and all right child pointers that are NULL - * (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: + * \brief This file is a simple implementation of a Threaded Binary Tree + * + * It has the following functionalities: * - Insertion * - Search * - Deletion * - Listing of node keys inorder,preorder,postorder + * * \author [Amitha Nayak](https://github.com/amitnayakblr) */