|
77 | 77 | Keresőfák
|
78 | 78 | </button>
|
79 | 79 | <div class="algorithm-list {algorithmGroups.searchTrees ? 'visible' : ''}">
|
80 |
| - <button class="algorithm-button" on:click={() => selectAlgorithm('binaryTree')}>Bináris fa</button> |
81 |
| - <button class="algorithm-button" on:click={() => selectAlgorithm('avlTree')}>AVL-fa</button> |
82 |
| - <button class="algorithm-button" on:click={() => selectAlgorithm('bTree')}>B-fa</button> |
| 80 | + <button class="algorithm-button todo" on:click={() => selectAlgorithm('binaryTree')}>Bináris fa</button> |
| 81 | + <button class="algorithm-button todo" on:click={() => selectAlgorithm('avlTree')}>AVL-fa</button> |
| 82 | + <button class="algorithm-button todo" on:click={() => selectAlgorithm('bTree')}>B-fa</button> |
83 | 83 | <button class="algorithm-button todo" on:click={() => selectAlgorithm('redBlackTree')}>Piros-fekete fa</button>
|
84 | 84 | <button class="algorithm-button todo" on:click={() => selectAlgorithm('twoThreeTree')}>2-3 fa</button>
|
85 | 85 | <button class="algorithm-button todo" on:click={() => selectAlgorithm('binaryHeap')}>Bináris kupac</button>
|
|
90 | 90 | Sztring algoritmusok
|
91 | 91 | </button>
|
92 | 92 | <div class="algorithm-list {algorithmGroups.stringAlgorithms ? 'visible' : ''}">
|
93 |
| - <button class="algorithm-button" on:click={() => selectAlgorithm('rabinKarp')}>Rabin-Karp algoritmus</button> |
94 |
| - <button class="algorithm-button" on:click={() => selectAlgorithm('knuthMorrisPratt')}>Knuth-Morris-Pratt algoritmus</button> |
| 93 | + <button class="algorithm-button todo" on:click={() => selectAlgorithm('rabinKarp')}>Rabin-Karp algoritmus</button> |
| 94 | + <button class="algorithm-button todo" on:click={() => selectAlgorithm('knuthMorrisPratt')}>Knuth-Morris-Pratt algoritmus</button> |
95 | 95 | </div>
|
96 | 96 | </div>
|
97 | 97 | <div class="algorithm-group">
|
98 | 98 | <button class="algorithm-group-button" on:click={() => toggleGroup('shortestPath')}>
|
99 | 99 | Legrövidebb út keresése
|
100 | 100 | </button>
|
101 | 101 | <div class="algorithm-list {algorithmGroups.shortestPath ? 'visible' : ''}">
|
102 |
| - <button class="algorithm-button" on:click={() => selectAlgorithm('dijkstraShortestPath')}>Dijkstra algoritmus</button> |
103 |
| - <button class="algorithm-button" on:click={() => selectAlgorithm('bellmanFordShortestPath')}>Bellman-Ford algoritmus</button> |
| 102 | + <button class="algorithm-button todo" on:click={() => selectAlgorithm('dijkstraShortestPath')}>Dijkstra algoritmus</button> |
| 103 | + <button class="algorithm-button todo" on:click={() => selectAlgorithm('bellmanFordShortestPath')}>Bellman-Ford algoritmus</button> |
104 | 104 | </div>
|
105 | 105 | </div>
|
106 | 106 | <div class="algorithm-group">
|
107 | 107 | <button class="algorithm-group-button" on:click={() => toggleGroup('minimumSpanningTree')}>
|
108 | 108 | Minimális feszítőfák
|
109 | 109 | </button>
|
110 | 110 | <div class="algorithm-list {algorithmGroups.minimumSpanningTree ? 'visible' : ''}">
|
111 |
| - <button class="algorithm-button" on:click={() => selectAlgorithm('primMinimumSpanningTree')}>Prim algoritmus</button> |
| 111 | + <button class="algorithm-button todo" on:click={() => selectAlgorithm('primMinimumSpanningTree')}>Prim algoritmus</button> |
112 | 112 | <button class="algorithm-button" on:click={() => selectAlgorithm('kruskalMinimumSpanningTree')}>Kruskal algoritmus</button>
|
113 | 113 | </div>
|
114 | 114 | </div>
|
|
119 | 119 | <div class="algorithm-list {algorithmGroups.geometryAlgorithms ? 'visible' : ''}">
|
120 | 120 | <button class="algorithm-button" on:click={() => selectAlgorithm('convexHull')}>Konvex burok (Brute Force)</button>
|
121 | 121 | <button class="algorithm-button" on:click={() => selectAlgorithm('jarvisMarch')}>Jarvis menetelés</button>
|
122 |
| - <button class="algorithm-button" on:click={() => selectAlgorithm('grahamScan')}>Graham pásztázás</button> |
| 122 | + <button class="algorithm-button todo" on:click={() => selectAlgorithm('grahamScan')}>Graham pásztázás</button> |
123 | 123 | </div>
|
124 | 124 | </div>
|
125 | 125 | </div>
|
|
0 commit comments