├── assets ├── tutorial │ ├── draw-wall.gif │ ├── generate-maze.gif │ ├── pixel_tutorial.png │ ├── speed_tutorial.png │ ├── algorithm_tutorial.png │ ├── drag-source-target.gif │ ├── man-thinking.svg │ ├── man-with-maze.svg │ └── man-clicking-visualize.svg └── icon │ ├── caret-down.svg │ ├── angle-double-down.svg │ ├── target.svg │ ├── flask.svg │ ├── source.svg │ └── lightbulb-alt.svg ├── README.md ├── css ├── utility.css └── main.css ├── index.html └── app.js /assets/tutorial/draw-wall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeetSinghRajput/path-finder-YourTube-tutorial/HEAD/assets/tutorial/draw-wall.gif -------------------------------------------------------------------------------- /assets/tutorial/generate-maze.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeetSinghRajput/path-finder-YourTube-tutorial/HEAD/assets/tutorial/generate-maze.gif -------------------------------------------------------------------------------- /assets/tutorial/pixel_tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeetSinghRajput/path-finder-YourTube-tutorial/HEAD/assets/tutorial/pixel_tutorial.png -------------------------------------------------------------------------------- /assets/tutorial/speed_tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeetSinghRajput/path-finder-YourTube-tutorial/HEAD/assets/tutorial/speed_tutorial.png -------------------------------------------------------------------------------- /assets/tutorial/algorithm_tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeetSinghRajput/path-finder-YourTube-tutorial/HEAD/assets/tutorial/algorithm_tutorial.png -------------------------------------------------------------------------------- /assets/tutorial/drag-source-target.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijeetSinghRajput/path-finder-YourTube-tutorial/HEAD/assets/tutorial/drag-source-target.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Links 2 | 3 | [YouTube Playlist](https://www.youtube.com/watch?v=Oaf9mR9oDT8&list=PLZ92O1inS6VmlSaCzdxm5_Jf2IyJesCF4&pp=iAQB). 4 | 5 | [Path finder visualizer](https://path-explorer.netlify.app/). -------------------------------------------------------------------------------- /assets/icon/caret-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assets/icon/angle-double-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/icon/target.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/icon/flask.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/icon/source.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/icon/lightbulb-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/utility.css: -------------------------------------------------------------------------------- 1 | .caret { 2 | display: block; 3 | aspect-ratio: 1; 4 | width: 14px; 5 | background: url(../assets/icon/caret-down.svg); 6 | } 7 | 8 | .icon { 9 | aspect-ratio: 1; 10 | width: 20px; 11 | } 12 | 13 | .wall { 14 | border-color: var(--clr-navy); 15 | animation: wallAnimation .5s ease-out forwards; 16 | } 17 | 18 | .path { 19 | animation: pathAnimation 1.5s ease-out forwards; 20 | } 21 | 22 | .visited { 23 | animation: visitedAnimation 1.5s ease-out forwards; 24 | } 25 | 26 | .unvisited { 27 | border: 1px solid var(--light-line); 28 | } 29 | 30 | .source { 31 | background: url(../assets/icon/source.svg); 32 | } 33 | 34 | .target { 35 | background: url(../assets/icon/target.svg); 36 | } 37 | 38 | 39 | 40 | /* animation */ 41 | @keyframes wallAnimation { 42 | 43 | 0% { 44 | transform: scale(.3); 45 | background-color: var(--wall-clr); 46 | } 47 | 48 | 50% { 49 | transform: scale(1.1); 50 | background-color: var(--wall-clr); 51 | } 52 | 53 | 100% { 54 | transform: scale(1.0); 55 | background-color: var(--wall-clr); 56 | } 57 | } 58 | 59 | @keyframes pathAnimation { 60 | 0% { 61 | transform: scale(.6); 62 | background-color: var(--path-clr); 63 | } 64 | 65 | 50% { 66 | transform: scale(1); 67 | background-color: var(--path-clr); 68 | } 69 | 70 | 100% { 71 | transform: scale(1.0); 72 | background-color: var(--path-clr); 73 | } 74 | } 75 | 76 | @keyframes visitedAnimation { 77 | 0% { 78 | transform: scale(.3); 79 | background-color: rgba(0, 0, 66, 0.75); 80 | border-radius: 100%; 81 | } 82 | 83 | 50% { 84 | background-color: rgba(17, 104, 217, 0.75); 85 | } 86 | 87 | 75% { 88 | transform: scale(1); 89 | background-color: rgba(0, 217, 159, 0.75); 90 | } 91 | 92 | 100% { 93 | transform: scale(1); 94 | background-color: var(--visited-clr); 95 | } 96 | } 97 | 98 | 99 | -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --clr-navy: #34495e; 3 | --primary-clr: #6563ff; 4 | --secondary-clr: #c4c3fc; 5 | --light-line: #e4e2ed; 6 | --cell-width: 22px; 7 | --light-text: #686673; 8 | --light-dot: #adaac0; 9 | --wall-clr: #0c3547; 10 | --path-clr: #fffe6a; 11 | --visited-clr: #40cee3; 12 | } 13 | 14 | *{ 15 | margin: 0; 16 | padding: 0; 17 | box-sizing: border-box; 18 | font-family: sans-serif; 19 | text-decoration: none; 20 | list-style: none; 21 | } 22 | 23 | body{ 24 | width: 100vw; 25 | height: 100vh; 26 | } 27 | .template{ 28 | width: 100%; 29 | height: 100%; 30 | display: grid; 31 | grid-template-rows: auto 1fr; 32 | grid-gap: 10px; 33 | } 34 | 35 | 36 | nav{ 37 | padding: 4px; 38 | white-space: nowrap; 39 | display: flex; 40 | align-items: center; 41 | justify-content: space-between; 42 | background-color: var(--clr-navy); 43 | } 44 | 45 | .logo{ 46 | padding: 0 16px; 47 | color: white; 48 | font-size: 20px; 49 | font-weight: 600; 50 | } 51 | 52 | .btn{ 53 | background-color: var(--primary-clr); 54 | color: white; 55 | padding: 8px 16px; 56 | border-radius: 5px; 57 | cursor: pointer; 58 | } 59 | 60 | .nav-menu{ 61 | display: flex; 62 | align-items: center; 63 | } 64 | .nav-menu>li.active>a{ 65 | background-color: var(--primary-clr); 66 | } 67 | .nav-menu>li.active>a:hover{ 68 | color: white; 69 | } 70 | .nav-menu>li>a:hover{ 71 | color: var(--secondary-clr); 72 | } 73 | .nav-menu>li>a{ 74 | color: white; 75 | padding: 8px 16px; 76 | display: block; 77 | font-weight: 600; 78 | display: flex; 79 | align-items: center; 80 | gap: 8px; 81 | } 82 | .drop-box{ 83 | position: relative; 84 | } 85 | .drop-box.active .drop-menu{ 86 | display: block; 87 | } 88 | .drop-box .drop-menu{ 89 | position: absolute; 90 | right: 0; 91 | z-index: 100; 92 | top: calc(100% + 20px); 93 | background-color: var(--clr-navy); 94 | min-width: 120px; 95 | padding: 4px; 96 | border-radius: 8px; 97 | display: none; 98 | } 99 | 100 | .drop-menu>li>a:hover, 101 | .drop-menu>li.active>a{ 102 | background-color: var(--primary-clr); 103 | } 104 | .drop-menu>li>a{ 105 | color: white; 106 | padding: 8px; 107 | display: block; 108 | border-radius: 4px; 109 | } 110 | 111 | .guide-bar{ 112 | text-transform: capitalize; 113 | font-size: 14px; 114 | display: flex; 115 | gap: 16px; 116 | padding: 8px; 117 | } 118 | .guide-bar>li{ 119 | display: flex; 120 | align-items: center; 121 | gap: 4px; 122 | } 123 | 124 | #board{ 125 | overflow: hidden; 126 | } 127 | 128 | .row{ 129 | display: flex; 130 | } 131 | .col{ 132 | aspect-ratio: 1; 133 | width: 100%; 134 | min-width: var(--cell-width); 135 | border: 1px solid var(--light-line); 136 | } 137 | 138 | @media screen and (max-width: 1000px){ 139 | nav{ 140 | display: grid; 141 | grid-template-columns: 1fr 1fr 1fr; 142 | grid-row-gap: 4px; 143 | } 144 | .btn{ 145 | justify-self: start; 146 | } 147 | .nav-menu{ 148 | grid-column: 1/-1; 149 | width: max-content; 150 | } 151 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | path finder 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | 61 | 62 | 88 |
89 |
90 |
91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | const board = document.getElementById('board'); 2 | var cells; 3 | let row, col; 4 | var matrix; 5 | let source_Cordinate; 6 | let target_Cordinate; 7 | renderBoard(); 8 | function renderBoard(cellWidth = 22) { 9 | const root = document.documentElement; 10 | root.style.setProperty('--cell-width', `${cellWidth}px`); 11 | row = Math.floor(board.clientHeight / cellWidth); 12 | col = Math.floor(board.clientWidth / cellWidth); 13 | board.innerHTML = ''; 14 | cells = []; 15 | matrix = []; 16 | 17 | for (let i = 0; i < row; i++) { 18 | const rowArr = []; 19 | const rowElement = document.createElement('div'); 20 | rowElement.classList.add('row'); 21 | rowElement.setAttribute('id', `${i}`); 22 | 23 | for (let j = 0; j < col; j++) { 24 | const colElement = document.createElement('div'); 25 | colElement.classList.add('col'); 26 | colElement.setAttribute('id', `${i}-${j}`); 27 | cells.push(colElement); 28 | rowArr.push(colElement); 29 | rowElement.appendChild(colElement); 30 | } 31 | 32 | matrix.push(rowArr); 33 | board.appendChild(rowElement); 34 | } 35 | 36 | source_Cordinate = set('source'); 37 | target_Cordinate = set('target'); 38 | boardInteraction(cells); 39 | } 40 | 41 | const navOptions = document.querySelectorAll('.nav-menu>li>a'); 42 | var dropOptions = null; 43 | 44 | const removeActive = (elements, parent = false) => { 45 | elements.forEach(element => { 46 | if (parent) element = element.parentElement; 47 | element.classList.remove('active'); 48 | }); 49 | } 50 | 51 | navOptions.forEach(navOption => { 52 | navOption.addEventListener('click', () => { 53 | const li = navOption.parentElement; 54 | if (li.classList.contains('active')) { 55 | li.classList.remove('active'); 56 | return; 57 | } 58 | removeActive(navOptions, true); 59 | li.classList.add('active'); 60 | 61 | if (li.classList.contains('drop-box')) { 62 | dropOptions = li.querySelectorAll('.drop-menu>li'); 63 | 64 | toggle_dropOption(navOption.innerText); 65 | } 66 | }) 67 | }) 68 | 69 | 70 | let pixelSize = 22; 71 | let speed = 'normal'; 72 | let algorithm = 'BFS'; 73 | const visualizeBtn = document.getElementById('visualize'); 74 | 75 | function toggle_dropOption(target) { 76 | dropOptions.forEach(dropOption => { 77 | dropOption.addEventListener('click', () => { 78 | removeActive(dropOptions); 79 | dropOption.classList.add('active'); 80 | 81 | if (target === 'pixel') { 82 | pixelSize = +dropOption.innerText.replace('px', ''); 83 | renderBoard(pixelSize); 84 | } 85 | else if (target === 'speed') { 86 | speed = dropOption.innerText; 87 | } 88 | else { 89 | algorithm = dropOption.innerText.split(' ')[0]; 90 | visualizeBtn.innerText = `visualize ${algorithm}` 91 | } 92 | 93 | removeActive(navOptions, true); 94 | }) 95 | }) 96 | } 97 | 98 | document.addEventListener('click', (e) => { 99 | const navMenu = document.querySelector('.nav-menu'); 100 | 101 | if (!navMenu.contains(e.target)) { 102 | removeActive(navOptions, true); 103 | } 104 | }) 105 | 106 | 107 | 108 | function isValid(x, y) { 109 | return (x >= 0 && y >= 0 && x < row && y < col) 110 | } 111 | function set(className, x = -1, y = -1) { 112 | if (isValid(x, y)) { 113 | matrix[x][y].classList.add(className); 114 | } 115 | else { 116 | x = Math.floor(Math.random() * row); 117 | y = Math.floor(Math.random() * col); 118 | matrix[x][y].classList.add(className); 119 | } 120 | 121 | return { x, y }; 122 | } 123 | 124 | 125 | //======================================= 126 | //======== board interaction 🔵👆 ====== 127 | //======================================= 128 | 129 | function boardInteraction(cells) { 130 | let isDrawing = false; 131 | let isDragging = false; 132 | let DragPoint = null; 133 | 134 | cells.forEach((cell) => { 135 | 136 | const pointerdown = (e) => { 137 | if (e.target.classList.contains('source')) { 138 | DragPoint = 'source'; 139 | isDragging = true; 140 | } 141 | else if (e.target.classList.contains('target')) { 142 | DragPoint = 'target'; 143 | isDragging = true; 144 | } 145 | else { 146 | isDrawing = true; 147 | } 148 | } 149 | 150 | const pointermove = (e) => { 151 | if (isDrawing && !e.target.classList.contains('source') && !e.target.classList.contains('target')) { 152 | e.target.classList.add('wall'); 153 | } 154 | else if (DragPoint && isDragging) { 155 | cells.forEach(cell => { 156 | cell.classList.remove(`${DragPoint}`); 157 | }) 158 | 159 | e.target.classList.add(`${DragPoint}`) 160 | const cordinate = e.target.id.split('-'); 161 | 162 | if (DragPoint === 'source') { 163 | source_Cordinate.x = +cordinate[0]; 164 | source_Cordinate.y = +cordinate[1]; 165 | } 166 | else { 167 | target_Cordinate.x = +cordinate[0]; 168 | target_Cordinate.y = +cordinate[1]; 169 | } 170 | } 171 | } 172 | const pointerup = () => { 173 | isDragging = false; 174 | isDrawing = false; 175 | DragPoint = null; 176 | } 177 | cell.addEventListener('pointerdown', pointerdown); 178 | cell.addEventListener('pointermove', pointermove); 179 | cell.addEventListener('pointerup', pointerup); 180 | cell.addEventListener('click', () => { 181 | cell.classList.toggle('wall'); 182 | }) 183 | }); 184 | } 185 | 186 | const clearPathBtn = document.getElementById('clearPath'); 187 | const clearBoardBtn = document.getElementById('clearBoard'); 188 | 189 | clearPathBtn.addEventListener('click', clearPath); 190 | clearBoardBtn.addEventListener('click', clearBoard); 191 | 192 | function clearPath() { 193 | cells.forEach(cell => { 194 | cell.classList.remove('visited'); 195 | cell.classList.remove('path'); 196 | }) 197 | } 198 | 199 | function clearBoard() { 200 | cells.forEach(cell => { 201 | cell.classList.remove('visited'); 202 | cell.classList.remove('wall'); 203 | cell.classList.remove('path'); 204 | }) 205 | } 206 | 207 | 208 | 209 | 210 | //======================================= 211 | //========= MAZE GENERATION 🧩🧩 ======= 212 | //======================================= 213 | 214 | var wallToAnimate; 215 | const generateMazeBtn = document.getElementById('generateMazeBtn'); 216 | 217 | generateMazeBtn.addEventListener('click', () => { 218 | wallToAnimate = []; 219 | generateMaze(0, row - 1, 0, col - 1, false, 'horizontal'); 220 | animate(wallToAnimate, 'wall'); 221 | }) 222 | 223 | function generateMaze(rowStart, rowEnd, colStart, colEnd, surroundingWall, orientation) { 224 | if (rowStart > rowEnd || colStart > colEnd) { 225 | return; 226 | } 227 | 228 | if (!surroundingWall) { 229 | for (let i = 0; i < col; i++) { 230 | if (!matrix[0][i].classList.contains('source') && !matrix[0][i].classList.contains('target')) 231 | wallToAnimate.push(matrix[0][i]); 232 | 233 | if (!matrix[row - 1][i].classList.contains('source') && !matrix[row - 1][i].classList.contains('target')) 234 | wallToAnimate.push(matrix[row - 1][i]); 235 | } 236 | 237 | for (let i = 0; i < row; i++) { 238 | if (!matrix[i][0].classList.contains('source') && !matrix[i][0].classList.contains('target')) 239 | wallToAnimate.push(matrix[i][0]); 240 | 241 | if (!matrix[i][col - 1].classList.contains('source') && !matrix[i][col - 1].classList.contains('target')) 242 | wallToAnimate.push(matrix[i][col - 1]); 243 | } 244 | 245 | surroundingWall = true; 246 | } 247 | 248 | if (orientation === 'horizontal') { 249 | let possibleRows = []; 250 | for (let i = rowStart; i <= rowEnd; i += 2) { 251 | possibleRows.push(i); 252 | } 253 | 254 | let possibleCols = []; 255 | for (let i = colStart - 1; i <= colEnd + 1; i += 2) { 256 | if (i > 0 && i < col - 1) 257 | possibleCols.push(i); 258 | } 259 | 260 | let currentRow = possibleRows[Math.floor(Math.random() * possibleRows.length)]; 261 | let randomCol = possibleCols[Math.floor(Math.random() * possibleCols.length)]; 262 | 263 | for (let i = colStart - 1; i <= colEnd + 1; i++) { 264 | const cell = matrix[currentRow][i]; 265 | 266 | if (!cell || i === randomCol || cell.classList.contains('source') || cell.classList.contains('target')) 267 | continue; 268 | 269 | wallToAnimate.push(cell); 270 | } 271 | //upper subDivision 272 | generateMaze(rowStart, currentRow - 2, colStart, colEnd, surroundingWall, (currentRow - 2 - rowStart > colEnd - colStart) ? 'horizontal' : 'vertical'); 273 | 274 | //bottom subDivision 275 | generateMaze(currentRow + 2, rowEnd, colStart, colEnd, surroundingWall, (rowEnd - (currentRow + 2) > colEnd - colStart) ? 'horizontal' : 'vertical'); 276 | } 277 | else { 278 | let possibleCols = []; 279 | for (let i = colStart; i <= colEnd; i += 2) { 280 | possibleCols.push(i); 281 | } 282 | 283 | let possibleRows = []; 284 | for (let i = rowStart - 1; i <= rowEnd + 1; i += 2) { 285 | if (i > 0 && i < row - 1) 286 | possibleRows.push(i); 287 | } 288 | 289 | let currentCol = possibleCols[Math.floor(Math.random() * possibleCols.length)]; 290 | let randomRow = possibleRows[Math.floor(Math.random() * possibleRows.length)]; 291 | 292 | 293 | for (let i = rowStart - 1; i <= rowEnd + 1; i++) { 294 | if (!matrix[i]) continue; 295 | 296 | const cell = matrix[i][currentCol]; 297 | 298 | if (i === randomRow || cell.classList.contains('source') || cell.classList.contains('target')) 299 | continue; 300 | 301 | wallToAnimate.push(cell); 302 | } 303 | 304 | //right subDivision 305 | generateMaze(rowStart, rowEnd, colStart, currentCol - 2, surroundingWall, (rowEnd - rowStart > currentCol - 2 - colStart) ? 'horizontal' : 'vertical'); 306 | 307 | //right subDivision 308 | generateMaze(rowStart, rowEnd, currentCol + 2, colEnd, surroundingWall, (rowEnd - rowStart > colEnd - (currentCol + 2)) ? 'horizontal' : 'vertical'); 309 | } 310 | 311 | } 312 | 313 | 314 | 315 | 316 | 317 | 318 | //======================================= 319 | //=========== Path Finding ⚙️🦾 ======== 320 | //======================================= 321 | var visitedCell; 322 | var pathToAnimate; 323 | 324 | visualizeBtn.addEventListener('click', () => { 325 | clearPath(); 326 | visitedCell = []; 327 | pathToAnimate = []; 328 | 329 | switch (algorithm) { 330 | case 'BFS': 331 | BFS(); 332 | break; 333 | case 'Dijkstar\'s': 334 | Dijsktra(); 335 | break; 336 | case 'greedy': 337 | Greedy(); 338 | break; 339 | case 'A*': 340 | Astar(); 341 | break; 342 | case 'DFS': 343 | if (DFS(source_Cordinate)) visitedCell.push(matrix[source_Cordinate.x][source_Cordinate.y]); 344 | 345 | break; 346 | 347 | default: 348 | break; 349 | } 350 | animate(visitedCell, 'visited'); 351 | }) 352 | 353 | 354 | 355 | 356 | 357 | //===================== BFS ================== 358 | 359 | function BFS() { 360 | const queue = []; 361 | const visited = new Set(); 362 | const parent = new Map(); 363 | 364 | queue.push(source_Cordinate); 365 | visited.add(`${source_Cordinate.x}-${source_Cordinate.y}`); 366 | 367 | while (queue.length > 0) { 368 | const current = queue.shift(); 369 | visitedCell.push(matrix[current.x][current.y]); 370 | 371 | //you find the target 372 | if (current.x === target_Cordinate.x && current.y === target_Cordinate.y) { 373 | getPath(parent, target_Cordinate); 374 | return; 375 | } 376 | 377 | const neighbours = [ 378 | { x: current.x - 1, y: current.y },//up 379 | { x: current.x, y: current.y + 1 },//right 380 | { x: current.x + 1, y: current.y },//bottom 381 | { x: current.x, y: current.y - 1 }//right 382 | ]; 383 | 384 | for (const neighbour of neighbours) { 385 | const key = `${neighbour.x}-${neighbour.y}`; 386 | 387 | if (isValid(neighbour.x, neighbour.y) && 388 | !visited.has(key) && 389 | !matrix[neighbour.x][neighbour.y].classList.contains('wall') 390 | ) { 391 | queue.push(neighbour); 392 | visited.add(key); 393 | parent.set(key, current); 394 | } 395 | } 396 | } 397 | } 398 | 399 | function animate(elements, className) { 400 | let delay = 10; 401 | if (className === 'path') 402 | delay *= 3.5; 403 | 404 | for (let i = 0; i < elements.length; i++) { 405 | setTimeout(() => { 406 | elements[i].classList.remove('visited'); 407 | elements[i].classList.add(className); 408 | if (i === elements.length - 1 && className === 'visited') { 409 | animate(pathToAnimate, 'path'); 410 | } 411 | }, delay * i); 412 | } 413 | } 414 | 415 | function getPath(parent, target) { 416 | if (!target) return; 417 | pathToAnimate.push(matrix[target.x][target.y]); 418 | 419 | const p = parent.get(`${target.x}-${target.y}`); 420 | getPath(parent, p); 421 | } 422 | 423 | 424 | 425 | //============ Dijsktra's Algorithm ========== 426 | 427 | class PriorityQueue { 428 | constructor() { 429 | this.elements = []; 430 | this.length = 0; 431 | } 432 | push(data) { 433 | this.elements.push(data); 434 | this.length++; 435 | this.upHeapify(this.length - 1); 436 | } 437 | pop() { 438 | this.swap(0, this.length - 1); 439 | const popped = this.elements.pop(); 440 | this.length--; 441 | this.downheapify(0); 442 | return popped; 443 | } 444 | 445 | upHeapify(i) { 446 | if (i === 0) return; 447 | const parent = Math.floor((i - 1) / 2); 448 | if (this.elements[i].cost < this.elements[parent].cost) { 449 | this.swap(parent, i); 450 | this.upHeapify(parent); 451 | } 452 | } 453 | downheapify(i) { 454 | let minNode = i; 455 | const leftChild = (2 * i) + 1; 456 | const rightChild = (2 * i) + 2; 457 | 458 | if (leftChild < this.length && this.elements[leftChild].cost < this.elements[minNode].cost) { 459 | minNode = leftChild; 460 | } 461 | if (rightChild < this.length && this.elements[rightChild].cost < this.elements[minNode].cost) { 462 | minNode = rightChild; 463 | } 464 | 465 | if (minNode !== i) { 466 | this.swap(minNode, i); 467 | this.downheapify(minNode); 468 | } 469 | } 470 | isEmpty() { 471 | return this.length === 0; 472 | } 473 | swap(x, y) { 474 | [this.elements[x], this.elements[y]] = [this.elements[y], this.elements[x]]; 475 | } 476 | } 477 | 478 | function Dijsktra() { 479 | const pq = new PriorityQueue(); 480 | const parent = new Map(); 481 | const distance = []; 482 | 483 | for (let i = 0; i < row; i++) { 484 | const INF = []; 485 | for (let j = 0; j < col; j++) { 486 | INF.push(Infinity); 487 | } 488 | distance.push(INF); 489 | } 490 | 491 | distance[source_Cordinate.x][source_Cordinate.y] = 0; 492 | pq.push({ cordinate: source_Cordinate, cost: 0 }); 493 | 494 | while (!pq.isEmpty()) { 495 | const { cordinate: current, cost: distanceSoFar } = pq.pop(); 496 | visitedCell.push(matrix[current.x][current.y]); 497 | 498 | //you find the target 499 | if (current.x === target_Cordinate.x && current.y === target_Cordinate.y) { 500 | getPath(parent, target_Cordinate); 501 | return; 502 | } 503 | 504 | const neighbours = [ 505 | { x: current.x - 1, y: current.y },//up 506 | { x: current.x, y: current.y + 1 },//right 507 | { x: current.x + 1, y: current.y },//bottom 508 | { x: current.x, y: current.y - 1 }//right 509 | ]; 510 | 511 | for (const neighbour of neighbours) { 512 | const key = `${neighbour.x}-${neighbour.y}`; 513 | 514 | if (isValid(neighbour.x, neighbour.y) && 515 | !matrix[neighbour.x][neighbour.y].classList.contains('wall') 516 | ) { 517 | //Assuming edge weight = 1, between adjacent vertices 518 | const edgeWeight = 1; 519 | const distanceToNeighbour = distanceSoFar + edgeWeight; 520 | 521 | if (distanceToNeighbour < distance[neighbour.x][neighbour.y]) { 522 | distance[neighbour.x][neighbour.y] = distanceToNeighbour; 523 | pq.push({ cordinate: neighbour, cost: distanceToNeighbour }); 524 | parent.set(key, current); 525 | } 526 | } 527 | } 528 | } 529 | } 530 | 531 | 532 | //============== Greedy Algorithm ============ 533 | 534 | function heuristicValue(node) { 535 | return Math.abs(node.x - target_Cordinate.x) + Math.abs(node.y - target_Cordinate.y); 536 | } 537 | 538 | function Greedy() { 539 | const queue = new PriorityQueue(); 540 | const visited = new Set(); 541 | const parent = new Map(); 542 | 543 | queue.push({ cordinate: source_Cordinate, cost: heuristicValue(source_Cordinate) }); 544 | visited.add(`${source_Cordinate.x}-${source_Cordinate.y}`); 545 | 546 | while (queue.length > 0) { 547 | const { cordinate: current } = queue.pop(); 548 | visitedCell.push(matrix[current.x][current.y]); 549 | 550 | //you find the target 551 | if (current.x === target_Cordinate.x && current.y === target_Cordinate.y) { 552 | getPath(parent, target_Cordinate); 553 | return; 554 | } 555 | 556 | const neighbours = [ 557 | { x: current.x - 1, y: current.y },//up 558 | { x: current.x, y: current.y + 1 },//right 559 | { x: current.x + 1, y: current.y },//bottom 560 | { x: current.x, y: current.y - 1 }//right 561 | ]; 562 | 563 | for (const neighbour of neighbours) { 564 | const key = `${neighbour.x}-${neighbour.y}`; 565 | 566 | if (isValid(neighbour.x, neighbour.y) && 567 | !visited.has(key) && 568 | !matrix[neighbour.x][neighbour.y].classList.contains('wall') 569 | ) { 570 | queue.push({ cordinate: neighbour, cost: heuristicValue(neighbour) }); 571 | visited.add(key); 572 | parent.set(key, current); 573 | } 574 | } 575 | } 576 | } 577 | 578 | 579 | //============== Astar Algorithm ============= 580 | //Dijkstar's + Greedy = Astar 581 | //distance + heuristic 582 | 583 | function Astar() { 584 | const queue = new PriorityQueue();; 585 | const visited = new Set();//closedset 586 | const queued = new Set();//openset 587 | const parent = new Map(); 588 | const gScore = []; 589 | 590 | for (let i = 0; i < row; i++) { 591 | const INF = []; 592 | for (let j = 0; j < col; j++) { 593 | INF.push(Infinity); 594 | } 595 | gScore.push(INF); 596 | } 597 | 598 | gScore[source_Cordinate.x][source_Cordinate.y] = 0; 599 | queue.push({ cordinate: source_Cordinate, cost: heuristicValue(source_Cordinate) }); 600 | visited.add(`${source_Cordinate.x}-${source_Cordinate.y}`); 601 | 602 | while (queue.length > 0) { 603 | const { cordinate: current } = queue.pop(); 604 | visitedCell.push(matrix[current.x][current.y]); 605 | 606 | //you find the target 607 | if (current.x === target_Cordinate.x && current.y === target_Cordinate.y) { 608 | getPath(parent, target_Cordinate); 609 | return; 610 | } 611 | 612 | visited.add(`${current.x}-${current.y}`); 613 | 614 | const neighbours = [ 615 | { x: current.x - 1, y: current.y },//up 616 | { x: current.x, y: current.y + 1 },//right 617 | { x: current.x + 1, y: current.y },//bottom 618 | { x: current.x, y: current.y - 1 }//right 619 | ]; 620 | 621 | for (const neighbour of neighbours) { 622 | const key = `${neighbour.x}-${neighbour.y}`; 623 | 624 | if (isValid(neighbour.x, neighbour.y) && 625 | !visited.has(key) && 626 | !queued.has(key) && 627 | !matrix[neighbour.x][neighbour.y].classList.contains('wall') 628 | ) { 629 | 630 | //Assuming edge weight = 1, between adjacent vertices 631 | const edgeWeight = 1; 632 | const gScoreToNeighbour = gScore[current.x][current.y] + edgeWeight; 633 | const fScore = gScoreToNeighbour + heuristicValue(neighbour); 634 | 635 | if (gScoreToNeighbour < gScore[neighbour.x][neighbour.y]) { 636 | gScore[neighbour.x][neighbour.y] = gScoreToNeighbour; 637 | 638 | queue.push({ cordinate: neighbour, cost: fScore }); 639 | queued.add(key);//openset 640 | 641 | parent.set(key, current); 642 | } 643 | } 644 | } 645 | } 646 | } 647 | 648 | //=============== DFS Algorithm ============== 649 | const visited = new Set(); 650 | function DFS(current) { 651 | //base case 652 | if (current.x === target_Cordinate.x && current.y === target_Cordinate.y) { 653 | return true; 654 | } 655 | 656 | visitedCell.push(matrix[current.x][current.y]); 657 | visited.add(`${current.x}-${current.y}`); 658 | 659 | const neighbours = [ 660 | { x: current.x - 1, y: current.y },//up 661 | { x: current.x, y: current.y + 1 },//right 662 | { x: current.x + 1, y: current.y },//bottom 663 | { x: current.x, y: current.y - 1 }//right 664 | ]; 665 | 666 | for (const neighbour of neighbours) { 667 | if (isValid(neighbour.x, neighbour.y) && 668 | !visited.has(`${neighbour.x}-${neighbour.y}`) && 669 | !matrix[neighbour.x][neighbour.y].classList.contains('wall')) { 670 | if (DFS(neighbour)) { 671 | pathToAnimate.push(matrix[neighbour.x][neighbour.y]); 672 | return true; 673 | } 674 | 675 | } 676 | } 677 | 678 | return false; 679 | } 680 | -------------------------------------------------------------------------------- /assets/tutorial/man-thinking.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 22 | 23 | 24 | 33 | 41 | 49 | 57 | 65 | 73 | 74 | 76 | 83 | 87 | 88 | 100 | 101 | 102 | 103 | 104 | 114 | 115 | 116 | 117 | 118 | 119 | 126 | 128 | 130 | 137 | 139 | 141 | 142 | 143 | 144 | 145 | 149 | 150 | 151 | 152 | 153 | 154 | 156 | 158 | 160 | 162 | 164 | 166 | 168 | 170 | 172 | 174 | 175 | 177 | 179 | 182 | 185 | 187 | 189 | 191 | 193 | 195 | 197 | 198 | 199 | 200 | 201 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 216 | 219 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 237 | 240 | 243 | 245 | 246 | 247 | 250 | 258 | 260 | 261 | 264 | 265 | 266 | 269 | 270 | 271 | 275 | 276 | 277 | 278 | 281 | 283 | 284 | 285 | 287 | 288 | 289 | 290 | 291 | 297 | 299 | 300 | 302 | 303 | 304 | 305 | 306 | 308 | 310 | 313 | 315 | 317 | 319 | 321 | 324 | 327 | 330 | 333 | 334 | 335 | 336 | 337 | 338 | 340 | 343 | 344 | 345 | 346 | -------------------------------------------------------------------------------- /assets/tutorial/man-with-maze.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 9 | 10 | 11 | 12 | 14 | 15 | 21 | 28 | 29 | 30 | 31 | 32 | 33 | 39 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 104 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 121 | 122 | 123 | 125 | 127 | 129 | 130 | 131 | 133 | 134 | 135 | 137 | 139 | 141 | 142 | 143 | 145 | 147 | 149 | 150 | 151 | 153 | 155 | 157 | 158 | 159 | 161 | 163 | 165 | 167 | 169 | 171 | 173 | 175 | 177 | 178 | 179 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 203 | 206 | 207 | 208 | 209 | 213 | 216 | 217 | 222 | 223 | 224 | 225 | 226 | 228 | 230 | 233 | 247 | 248 | 251 | 252 | 255 | 257 | 258 | 259 | 261 | 264 | 267 | 270 | 273 | 276 | 279 | 281 | 283 | 284 | 285 | 286 | 287 | 290 | 298 | 299 | 300 | 301 | 304 | 308 | 312 | 313 | 314 | 322 | 326 | 329 | 331 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 352 | 353 | 354 | 357 | 365 | 366 | 367 | 370 | 378 | 379 | 380 | 384 | 388 | 390 | 392 | 394 | 395 | 396 | 397 | 405 | 409 | 412 | 413 | 414 | 415 | 416 | 418 | 420 | 423 | 426 | 429 | 431 | 433 | 435 | 439 | 442 | 444 | 445 | 446 | 447 | 448 | 449 | 451 | 452 | 456 | 458 | 461 | 462 | 463 | 464 | 469 | 477 | 479 | 480 | 481 | 483 | 485 | 486 | 488 | 490 | 491 | 493 | 495 | 496 | 497 | 498 | 502 | 505 | 506 | 507 | 508 | 509 | 510 | 516 | 518 | 520 | 522 | 524 | 527 | 528 | 531 | 532 | 533 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 566 | 567 | 568 | 570 | 571 | 572 | 574 | 575 | 576 | 579 | 580 | 581 | 583 | 584 | 585 | 587 | 588 | 589 | 593 | 594 | 595 | 599 | 600 | 601 | 603 | 604 | 605 | 606 | 607 | 624 | 625 | 626 | 627 | 628 | 631 | 632 | 633 | 636 | 637 | 638 | 641 | 642 | 643 | 646 | 647 | 648 | 651 | 652 | 653 | 656 | 657 | 658 | 661 | 662 | 663 | 666 | 667 | 668 | 669 | 670 | 671 | 679 | 680 | 681 | 685 | 686 | 687 | 688 | 691 | 692 | 693 | 696 | 697 | 698 | 701 | 702 | 703 | 706 | 707 | 708 | 709 | 710 | 711 | 718 | 719 | 720 | 724 | 725 | 726 | 727 | 730 | 731 | 732 | 735 | 736 | 737 | 740 | 741 | 742 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | -------------------------------------------------------------------------------- /assets/tutorial/man-clicking-visualize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 781 | 782 | 783 | 784 | 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 | 874 | 875 | 876 | 877 | 878 | 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1009 | 1010 | 1011 | 1012 | 1013 | 1014 | 1015 | 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | 1022 | 1023 | 1024 | 1025 | 1026 | 1027 | 1028 | 1029 | 1030 | 1031 | 1032 | 1033 | 1034 | 1035 | 1036 | 1037 | 1038 | 1039 | 1040 | 1041 | 1042 | 1043 | 1044 | 1045 | 1046 | 1047 | 1048 | 1049 | 1050 | 1051 | 1052 | 1053 | 1054 | 1055 | 1056 | 1057 | 1058 | 1059 | 1060 | 1061 | 1062 | 1063 | 1064 | 1065 | 1066 | 1067 | 1068 | 1069 | 1070 | 1071 | 1072 | 1073 | 1074 | 1075 | 1076 | 1077 | 1078 | 1079 | 1080 | 1081 | 1082 | 1083 | 1084 | 1085 | 1086 | 1087 | 1088 | 1089 | 1090 | 1091 | 1092 | 1093 | 1094 | 1095 | 1096 | 1097 | 1098 | 1099 | 1100 | 1101 | 1102 | 1103 | 1104 | 1105 | 1106 | 1107 | 1108 | 1109 | 1110 | 1111 | 1112 | 1113 | 1114 | 1115 | 1116 | 1117 | 1118 | 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1224 | 1225 | 1226 | 1227 | 1228 | 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | 1235 | 1236 | 1237 | 1238 | 1239 | 1240 | 1241 | 1242 | 1243 | 1244 | 1245 | 1246 | 1247 | 1248 | 1249 | 1250 | 1251 | 1252 | 1253 | 1254 | 1255 | 1256 | 1257 | 1258 | 1259 | 1260 | 1261 | 1262 | 1263 | 1264 | 1265 | 1266 | 1267 | 1268 | 1269 | 1270 | 1271 | 1272 | 1273 | 1274 | 1275 | 1276 | 1277 | 1278 | 1279 | 1280 | 1281 | 1282 | 1283 | 1284 | 1285 | 1286 | 1287 | 1288 | 1289 | 1290 | 1291 | 1292 | 1293 | 1294 | 1295 | 1296 | 1297 | 1298 | 1299 | 1300 | 1301 | 1302 | 1303 | 1304 | 1305 | 1306 | 1307 | 1308 | 1309 | 1310 | 1311 | 1312 | 1313 | 1314 | 1315 | 1316 | 1317 | 1318 | 1319 | 1320 | 1321 | 1322 | 1323 | 1324 | 1325 | 1326 | 1327 | 1328 | 1329 | 1330 | 1331 | 1332 | 1333 | 1334 | 1335 | 1336 | 1337 | 1338 | 1339 | 1340 | 1341 | 1342 | 1343 | 1344 | 1345 | 1346 | 1347 | 1348 | 1349 | 1350 | 1351 | 1352 | 1353 | 1354 | 1355 | 1356 | 1357 | 1358 | 1359 | 1360 | 1361 | 1362 | 1363 | 1364 | 1365 | 1366 | 1367 | 1368 | 1369 | Visualize 1370 | 1371 | 1372 | 1373 | 1374 | 1375 | 1376 | 1377 | 1378 | 1379 | 1380 | 1381 | 1382 | 1383 | 1384 | 1385 | 1386 | 1387 | 1388 | 1389 | 1390 | 1391 | 1392 | 1393 | 1394 | 1395 | 1396 | 1397 | 1398 | 1399 | 1400 | 1401 | 1402 | 1403 | 1404 | 1405 | 1406 | 1407 | 1408 | 1409 | 1410 | 1411 | 1412 | 1413 | 1414 | 1415 | 1416 | 1417 | 1418 | --------------------------------------------------------------------------------