├── .github ├── stale.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── LICENSE ├── Path Finding ├── README.md ├── algorithms │ ├── astar.js │ ├── bfs.js │ └── dijkstra.js ├── index.html ├── jquery-3.6.0.js ├── script.js └── style.css ├── README.md ├── WOC_IIITKalyani ├── Timeline.md └── cLog.md ├── binarysearch.html ├── bubbleSort.html ├── index.html ├── insertionsort.html ├── linearsearch.html ├── mergeSort.html ├── quickSort.html ├── search.html ├── seiveErato.html ├── selectionsort.html ├── sort.html ├── src ├── assets │ ├── clone.png │ ├── favicon.png │ ├── fork.png │ ├── hlogo.png │ ├── logo.png │ ├── nlogo.png │ └── star.png ├── home │ ├── css │ │ ├── morebutton.css │ │ └── style.css │ └── js │ │ ├── morebutton.js │ │ └── script.js ├── search │ ├── css │ │ └── style.css │ └── js │ │ ├── binarySearch.js │ │ ├── index.js │ │ └── linearSearch.js ├── seive_Of_Eratosthenes │ ├── index.js │ └── style.css └── sort │ ├── css │ └── style.css │ └── js │ ├── bubbleSort.js │ ├── heapSort.js │ ├── index.js │ ├── insertionSort.js │ ├── mergeSort.js │ ├── quickSort.js │ └── selectionSort.js └── temp ├── README.md ├── style.css ├── tree.html ├── treealgo.js └── visual2.js /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/LICENSE -------------------------------------------------------------------------------- /Path Finding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/Path Finding/README.md -------------------------------------------------------------------------------- /Path Finding/algorithms/astar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/Path Finding/algorithms/astar.js -------------------------------------------------------------------------------- /Path Finding/algorithms/bfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/Path Finding/algorithms/bfs.js -------------------------------------------------------------------------------- /Path Finding/algorithms/dijkstra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/Path Finding/algorithms/dijkstra.js -------------------------------------------------------------------------------- /Path Finding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/Path Finding/index.html -------------------------------------------------------------------------------- /Path Finding/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/Path Finding/jquery-3.6.0.js -------------------------------------------------------------------------------- /Path Finding/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/Path Finding/script.js -------------------------------------------------------------------------------- /Path Finding/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/Path Finding/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/README.md -------------------------------------------------------------------------------- /WOC_IIITKalyani/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/WOC_IIITKalyani/Timeline.md -------------------------------------------------------------------------------- /WOC_IIITKalyani/cLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/WOC_IIITKalyani/cLog.md -------------------------------------------------------------------------------- /binarysearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/binarysearch.html -------------------------------------------------------------------------------- /bubbleSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/bubbleSort.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/index.html -------------------------------------------------------------------------------- /insertionsort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/insertionsort.html -------------------------------------------------------------------------------- /linearsearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/linearsearch.html -------------------------------------------------------------------------------- /mergeSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/mergeSort.html -------------------------------------------------------------------------------- /quickSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/quickSort.html -------------------------------------------------------------------------------- /search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/search.html -------------------------------------------------------------------------------- /seiveErato.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/seiveErato.html -------------------------------------------------------------------------------- /selectionsort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/selectionsort.html -------------------------------------------------------------------------------- /sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/sort.html -------------------------------------------------------------------------------- /src/assets/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/assets/clone.png -------------------------------------------------------------------------------- /src/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/assets/favicon.png -------------------------------------------------------------------------------- /src/assets/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/assets/fork.png -------------------------------------------------------------------------------- /src/assets/hlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/assets/hlogo.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/nlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/assets/nlogo.png -------------------------------------------------------------------------------- /src/assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/assets/star.png -------------------------------------------------------------------------------- /src/home/css/morebutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/home/css/morebutton.css -------------------------------------------------------------------------------- /src/home/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/home/css/style.css -------------------------------------------------------------------------------- /src/home/js/morebutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/home/js/morebutton.js -------------------------------------------------------------------------------- /src/home/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/home/js/script.js -------------------------------------------------------------------------------- /src/search/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/search/css/style.css -------------------------------------------------------------------------------- /src/search/js/binarySearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/search/js/binarySearch.js -------------------------------------------------------------------------------- /src/search/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/search/js/index.js -------------------------------------------------------------------------------- /src/search/js/linearSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/search/js/linearSearch.js -------------------------------------------------------------------------------- /src/seive_Of_Eratosthenes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/seive_Of_Eratosthenes/index.js -------------------------------------------------------------------------------- /src/seive_Of_Eratosthenes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/seive_Of_Eratosthenes/style.css -------------------------------------------------------------------------------- /src/sort/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/sort/css/style.css -------------------------------------------------------------------------------- /src/sort/js/bubbleSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/sort/js/bubbleSort.js -------------------------------------------------------------------------------- /src/sort/js/heapSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/sort/js/heapSort.js -------------------------------------------------------------------------------- /src/sort/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/sort/js/index.js -------------------------------------------------------------------------------- /src/sort/js/insertionSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/sort/js/insertionSort.js -------------------------------------------------------------------------------- /src/sort/js/mergeSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/sort/js/mergeSort.js -------------------------------------------------------------------------------- /src/sort/js/quickSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/sort/js/quickSort.js -------------------------------------------------------------------------------- /src/sort/js/selectionSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/src/sort/js/selectionSort.js -------------------------------------------------------------------------------- /temp/README.md: -------------------------------------------------------------------------------- 1 | For sharing temporary code snippets 2 | -------------------------------------------------------------------------------- /temp/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/temp/style.css -------------------------------------------------------------------------------- /temp/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/temp/tree.html -------------------------------------------------------------------------------- /temp/treealgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/temp/treealgo.js -------------------------------------------------------------------------------- /temp/visual2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshitadixit/Structurex/HEAD/temp/visual2.js --------------------------------------------------------------------------------