{"id":18658686,"url":"https://github.com/welding-torch/binary-search-tree-visualiser","last_synced_at":"2025-11-05T23:30:38.374Z","repository":{"id":115533082,"uuid":"560791773","full_name":"Welding-Torch/Binary-Search-Tree-Visualiser","owner":"Welding-Torch","description":null,"archived":false,"fork":false,"pushed_at":"2023-01-22T17:30:31.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-27T15:28:22.931Z","etag":null,"topics":["binary-search-tree","binary-tree","data-structures","java","visualization"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Welding-Torch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-11-02T09:24:26.000Z","updated_at":"2022-11-02T09:30:21.000Z","dependencies_parsed_at":"2023-07-10T10:01:12.755Z","dependency_job_id":null,"html_url":"https://github.com/Welding-Torch/Binary-Search-Tree-Visualiser","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Welding-Torch%2FBinary-Search-Tree-Visualiser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Welding-Torch%2FBinary-Search-Tree-Visualiser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Welding-Torch%2FBinary-Search-Tree-Visualiser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Welding-Torch%2FBinary-Search-Tree-Visualiser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Welding-Torch","download_url":"https://codeload.github.com/Welding-Torch/Binary-Search-Tree-Visualiser/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239475962,"owners_count":19645041,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["binary-search-tree","binary-tree","data-structures","java","visualization"],"created_at":"2024-11-07T07:34:02.640Z","updated_at":"2025-11-05T23:30:38.302Z","avatar_url":"https://github.com/Welding-Torch.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e Binary Search Tree Visualization\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n\t\u003ca href=\"https://github.com/welding-torch\" title=\"profile\"\u003e\n\t\u003cimg src=\"https://img.shields.io/badge/maintainer-WeldingTorch-blue\" alt=\"maintainer\"\u003e\n\t\u003c/a\u003e\n\t\u003ca href=\"https://www.oracle.com/in/java/technologies/javase-downloads.html\" title=\"JDK Download\"\u003e\n\t\t\u003cimg src=\"https://img.shields.io/badge/JDK-%3E%3D%20v8-blue\" alt=\"jdk version\"\u003e\n\t\u003c/a\u003e\n\t\u003ca href=\"https://github.com/urvesh254/BST-Visualization/releases\"\u003e\n\t\t\u003cimg src=\"https://img.shields.io/badge/release-1.0.0-blue\" alt=\"release\"\u003e\n\t\u003c/a\u003e\n\t\u003cimg src=\"https://img.shields.io/badge/contributor-welcome-brightgreen\" alt=\"contributor\"\u003e\n\u003c/p\u003e\n\n## Table of contents\n* [Introduction](#introduction)\n* [Prerequisite](#prerequisite)\n* [Download](#download)\n* [Execution](#execution)\n* [Explanation](#explanation)\n\t* [Adding element in BST](#adding-element-in-binary-search-tree)\n\t* [Deleting Element from BST](#deleting-element-from-binary-search-tree)\n\n## Introduction\n- Hey there, welcome to **BST Visualization** repository. In this repository you see how operations in **Binary Search Tree** Data Structure like \"Delete\" and \"Add\" actually works and how BST is construct in visually.\n- Currently this program accept only Integer inputs.\n- **\"Suggestions are welcome\"**, put your suggestions in issue.\n\n## Prerequisite \n-   For run **BST Vitalization** in you system you want to install some softwares.\n\t - [Java JDK ](https://www.oracle.com/in/java/technologies/javase-downloads.html \"Java JDK\") \t\n\t - IDE or Language editor\n\t\t - [Sublime Text](https://www.sublimetext.com/ \"Sublime Text\") \n\t\t - [NetBeans](https://netbeans.org/ \"NetBeans IDE\")\n\t\t - [Atom](https://atom.io/ \"Atom\")\n\t\t - [Notepad++](https://notepad-plus-plus.org/downloads/ \"Notepad++\")\n\n## Download\n- Download .jar file form [Latest Releases](https://github.com/Welding-Torch/Binary-Search-Tree-Visualiser/blob/main/BSTVisualization.java \"Download\")\n- **Note**: For run this .jar file you want to complete [Prerequisite](#prerequisite) firsts.\n\n## Execution\n- Open CMD or terminal where you put BSTVisualization.java file.\n- First compile the java file using this command.\n\t```cmd\n\t\u003e javac BSTVisualization.java\n\t```\n- After compilation run the file using JVM using this command.\n\t```cmd\n\t\u003e java BSTVisualization\n\t```\n\n## Explanation\n### Adding Element in Binary Search Tree\n- We can add element in BST using two ways.\n\t1. With using **\"Add\"** button.\n\t2. With pressing **\"A\"** or **\"a\"** or **\"Enter\"** key in keyboard.\n\t\n![Add in BST](https://user-images.githubusercontent.com/55116730/102015789-a6009c00-3d83-11eb-8ae9-bf47b3fd6c67.gif \"Adding Element in BST\")\n\n### Deleting Element from Binary Search Tree\n- We can also delete element in BST using two ways.\n\t1. With using **\"Delete\"** button.\n\t2. With pressing **\"D\"** or **\"d\"** key in keyboard.\n\n![Delete in BST](https://user-images.githubusercontent.com/55116730/102015791-a9942300-3d83-11eb-9c0f-4befc0288583.gif)\n- If entered element is no present or Binary Search Tree is empty then it throws an popup window.\n\t1. BST Empty Error\n![BST Empty Error](https://user-images.githubusercontent.com/55116730/102014950-9b8fd380-3d7e-11eb-845b-9ff621e5c559.jpg \"BST Empty Error\")\n\t2. Element Not Available Error\n![Element Not Available Error](https://user-images.githubusercontent.com/55116730/102014949-9a5ea680-3d7e-11eb-9288-d9d3bc018ba8.jpg \"Element Not Available Error\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwelding-torch%2Fbinary-search-tree-visualiser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwelding-torch%2Fbinary-search-tree-visualiser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwelding-torch%2Fbinary-search-tree-visualiser/lists"}