|
| 1 | +<html> |
| 2 | + <head> |
| 3 | + <title>Searching Visualizer</title> |
| 4 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> |
| 5 | + <link id="cssTheme" rel="stylesheet" href="public/styling/cssBasic.css"/> |
| 6 | + <link rel="stylesheet" href="index.css" /> |
| 7 | + <link rel="shortcut icon" type="image/png" href="favicon.png"/> |
| 8 | + </head> |
| 9 | + <body> |
| 10 | + <div id='navbarDiv'> |
| 11 | + <nav class="navbar navbar-inverse"> |
| 12 | + <div class="container-fluid"> |
| 13 | + <div class="navbar-header"> |
| 14 | + <a id="refreshButton" class="navbar-brand" href="#">ALGORITHMS VISUALIZER</a> |
| 15 | + </div> |
| 16 | + <ul class="nav navbar-nav"> |
| 17 | + <li class="dropdown"> |
| 18 | + <a class="dropdown-toggle" data-toggle="dropdown" href="#">Algorithms |
| 19 | + <span class="caret"></span></a> |
| 20 | + <ul class="dropdown-menu"> |
| 21 | + <li id='startButtonBFS'><a href="#">Breadth-first Search</a></li> |
| 22 | + <li id='startButtonDijkstra'><a href="#">Dijkstra's Algorithm</a></li> |
| 23 | + <li id='startButtonBidirectional'><a href="#">Bidirectional Swarm Algorithm</a></li> |
| 24 | + <li id='startButtonAStar2'><a href="#">A* Search</a></li> |
| 25 | + <li id='startButtonGreedy'><a href="#">Greedy Best-first Search</a></li> |
| 26 | + <li id='startButtonAStar3'><a href="#">Convergent Swarm Algorithm</a></li> |
| 27 | + <li id='startButtonAStar'><a href="#">Swarm Algorithm</a></li> |
| 28 | + <li id='startButtonDFS'><a href="#">Depth-first Search</a></li> |
| 29 | + <li><a href="https://biswa2210.github.io/sorting-visualizer/">Sorting Visualizer</a></li> |
| 30 | + </ul> |
| 31 | + </li> |
| 32 | + <li class="dropdown"> |
| 33 | + <a class="dropdown-toggle" data-toggle="dropdown" href="#">Patterns |
| 34 | + <span class="caret"></span></a> |
| 35 | + <ul class="dropdown-menu"> |
| 36 | + <li id='startStairDemonstration'><a href="#">Simple Stair Pattern</a></li> |
| 37 | + <li id='startButtonCreateMazeWeights'><a href="#">Basic Weight Maze</a></li> |
| 38 | + <li id='startButtonCreateMazeTwo'><a href="#">Recursive Division</a></li> |
| 39 | + <li id='startButtonCreateMazeThree'><a href="#">Recursive Division (vertical skew)</a></li> |
| 40 | + <li id='startButtonCreateMazeFour'><a href="#">Recursive Division (horizontal skew)</a></li> |
| 41 | + <li id='startButtonCreateMazeOne'><a href="#">Basic Random Maze</a></li> |
| 42 | + </ul> |
| 43 | + </li> |
| 44 | + <li id='startButtonAddObject'><a href="#">Adding Bomb</a></li> |
| 45 | + <li id='startButtonStart'><button id="actualStartButton" class="btn btn-default navbar-btn" type="button">Visualize!</button></li> |
| 46 | + <li id='startButtonClearBoard'><a href="#">Clear Board</a></li> |
| 47 | + <li id='startButtonClearWalls'><a href="#">Clear Walls & Weights</a></li> |
| 48 | + <li id='startButtonClearPath'><a href="#">Clear Path</a></li> |
| 49 | + <li class="dropdown"> |
| 50 | + <a id="adjustSpeed" class="dropdown-toggle" data-toggle="dropdown" href="#">Speed: Fast |
| 51 | + <span class="caret"></span></a> |
| 52 | + <ul class="dropdown-menu"> |
| 53 | + <li id='adjustFast'><a href="#">Fast</a></li> |
| 54 | + <li id='adjustAverage'><a href="#">Average</a></li> |
| 55 | + <li id='adjustSlow'><a href="#">Slow</a></li> |
| 56 | + </ul> |
| 57 | + </li> |
| 58 | + </ul> |
| 59 | + </div> |
| 60 | + </nav> |
| 61 | + </div> |
| 62 | + <div id="tutorial"> |
| 63 | + <h3 class="sak">Welcome to Searching Visualizer!</h3> |
| 64 | + <h6 class="sak">This is basically searching algorithms visualizer section,here we can easily visualize searching algoeithms as path finding structure.Its like a fun with learn concept.Here any learns algos and visualize it thats means how the algo works .. so lets try this..</h6> |
| 65 | + <p class="sak">If you want to dive right in, feel free to press the "Skip Tutorial" button below. Otherwise, press "Next"!</p> |
| 66 | + <div id="tutorialCounter">1/9</div> |
| 67 | + <img id="mainTutorialImage" src="favicon.png"> |
| 68 | + <button id="nextButton" class="btn btn-default navbar-btn" type="button">Next</button> |
| 69 | + <button id="previousButton" class="btn btn-default navbar-btn" type="button">Previous</button> |
| 70 | + <button id="skipButton" class="btn btn-default navbar-btn" type="button">Skip Tutorial</button> |
| 71 | + </div> |
| 72 | + <div id='mainGrid'> |
| 73 | + <div id='mainText'> |
| 74 | + <ul> |
| 75 | + <li> |
| 76 | + <div class="start"></div>Start Node</li> |
| 77 | + <li> |
| 78 | + <div class="target"></div>Target Node</li> |
| 79 | + <li id="bombLegend"> |
| 80 | + <div class="object"></div>Bomb Node</li> |
| 81 | + <li id="weightLegend"> |
| 82 | + <div class="borderlessWeight"></div>Weight Node</li> |
| 83 | + <li> |
| 84 | + <div class="unvisited"></div>Unvisited Node</li> |
| 85 | + <li> |
| 86 | + <div class="visited"></div><div class="visitedobject"></div>Visited Nodes</li> |
| 87 | + <li> |
| 88 | + <div class="shortest-path"></div>Shortest-path Node</li> |
| 89 | + <li> |
| 90 | + <div class="wall"></div>Wall Node</li> |
| 91 | + </ul> |
| 92 | + </div> |
| 93 | + <div id="algorithmDescriptor">Choose an algorithm and visualize it!</div> |
| 94 | + <table id='board'/> |
| 95 | + </div> |
| 96 | + </body> |
| 97 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> |
| 98 | + <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> |
| 99 | + <script src='public/browser/bundle.js'></script> |
| 100 | +</html> |
0 commit comments