项目作者: urvesh254

项目描述 :
Implement Data structure using java. Data structures Like Linked List, Doubly Linked List, Binary Search Tree etc.
高级语言: Java
项目地址: git://github.com/urvesh254/Data-Structure.git
创建时间: 2020-10-10T11:24:01Z
项目社区:https://github.com/urvesh254/Data-Structure

开源协议:

下载


Data-Structure

Implement Data structure using java in CLI mode. Data structures Like Linked List, Doubly Linked List, Binary Search Tree etc.

Also implement the Binary search visulization using java swing package. In which we see how node is add in BST and how node is delete in BST.

For deletion in BST there two methods if node have two children. We can replace deleted node by left subtree maximum node. or replace by right subtree minimum node.