Skip to content

Commit e873ecb

Browse files
committed
Added project readme
1 parent 8d423bf commit e873ecb

14 files changed

+161
-0
lines changed

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Binary-Search-Tree-DSA.iml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
7+
</content>
8+
<orderEntry type="inheritedJdk" />
9+
<orderEntry type="sourceFolder" forTests="false" />
10+
</component>
11+
</module>

README.md

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# Binary Search Tree Implementation
2+
3+
## Overview
4+
This Java project implements a Binary Search Tree (BST) with fundamental operations such as insertion, deletion, and traversal. Designed with efficiency and simplicity in mind, this class provides an intuitive way to manage and manipulate a collection of integers in a hierarchical structure.
5+
6+
## Features
7+
- **Dynamic Tree Construction**: Create a BST either empty, with a single root node, or by parsing an array of integers.
8+
- **Insertion**: Add new elements to the tree while maintaining the BST properties.
9+
- **Deletion**: Remove elements from the tree, adjusting the structure as necessary to preserve BST properties.
10+
- **Search**: Check whether a specific value exists within the tree.
11+
- **Traversal**: Inorder, preorder, and postorder traversal methods to explore the tree's contents.
12+
- **K-th Smallest Element**: Retrieve the k-th smallest element from the tree, demonstrating an application of inorder traversal.
13+
- **Create Tree from Array**: Build a new BST from an array of integers, replacing any existing tree.
14+
15+
## Prerequisites
16+
- Java Development Kit (JDK) 11 or later.
17+
18+
## Setup and Compilation
19+
1. Ensure Java is installed on your system. You can verify this by running `java -version` in your command line or terminal.
20+
2. Clone or download this repository to your local machine.
21+
3. Navigate to the directory containing the `BinarySearchTree.java` file.
22+
4. Compile the class using the Java compiler:
23+
```bash
24+
javac BinarySearchTree.java
25+
```
26+
27+
## Usage
28+
### Creating a BST
29+
Instantiate a BST object in your Java program. You can create a tree in three ways:
30+
- Empty tree: `BinarySearchTree bst = new BinarySearchTree();`
31+
- Tree with an integer root: `BinarySearchTree bst = new BinarySearchTree(10);`
32+
- Tree with a Node as root: `BinarySearchTree bst = new BinarySearchTree(new Node(10));`
33+
34+
### Inserting Elements
35+
Add elements to your BST:
36+
```java
37+
bst.insert(5);
38+
bst.insert(15);
39+
```
40+
41+
### Deleting Elements
42+
Remove elements by value:
43+
```java
44+
bst.delete(5);
45+
```
46+
47+
### Searching for Elements
48+
Check if an element exists in the tree:
49+
```java
50+
boolean found = bst.search(15);
51+
```
52+
53+
### Traversing the Tree
54+
Perform different tree traversals:
55+
```java
56+
bst.inorderRec();
57+
bst.preorderRec();
58+
bst.postorderRec();
59+
```
60+
61+
### Finding the K-th Smallest Element
62+
Retrieve the k-th smallest element from the BST:
63+
```java
64+
Node kthSmallest = bst.kthSmallest(3);
65+
if (kthSmallest != null) {
66+
System.out.println("K-th Smallest: " + kthSmallest.key);
67+
}
68+
```
69+
70+
### Creating a Tree from an Array
71+
Overwrite the current tree with a new tree constructed from an array of integers:
72+
```java
73+
int[] values = {3, 1, 4, 2};
74+
bst.createTree(values);
75+
```
76+
77+
## Contributing
78+
Contributions to improve the Binary Search Tree implementation or extend its functionality are welcome. Please fork the repository, make your changes, and submit a pull request with a clear description of your modifications or additions.
79+
80+
## License
81+
Specify your project's license here, if applicable.
82+
83+
---

out/production/Binary-Search-Tree-DSA/.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

out/production/Binary-Search-Tree-DSA/.idea/misc.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

out/production/Binary-Search-Tree-DSA/.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

out/production/Binary-Search-Tree-DSA/.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$">
6+
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
7+
</content>
8+
<orderEntry type="inheritedJdk" />
9+
<orderEntry type="sourceFolder" forTests="false" />
10+
</component>
11+
</module>
Binary file not shown.
8.93 KB
Binary file not shown.
364 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)