Skip to content

Commit f0b699e

Browse files
fix algorithms readme
1 parent 2934800 commit f0b699e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

algorithms/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,32 @@ in the table or to add new ones.
1515
<tr>
1616
<td><a href="https://arxiv.org/abs/quant-ph/9508027" target="_blank">Polynomial-Time Algorithms for Prime Factorization and Discrete Logarithms on a Quantum Computer</a></td>
1717
<td>
18-
<a href="algebraic/shor/shor_modular_exponentiation.ipynb">Prime Factorization</a><br>
19-
<a href="algebraic/discrete_log/discrete_log.ipynb">Discrete Logarithm</a><br>
18+
<a href="foundational/shor/shor.ipynb">Prime Factorization</a><br>
19+
<a href="foundational/discrete_log/discrete_log.ipynb">Discrete Logarithm</a><br>
2020
</td>
2121
<td>Shor's algorithm for prime factorization and discrete logarithms</td>
2222
<td>#algebraic #prime_factorization #discrete_logarithms</td>
2323
</tr>
2424
<tr>
2525
<td><a href="https://arxiv.org/abs/quant-ph/9605043" target="_blank">A fast quantum mechanical algorithm for database search</a></td>
2626
<td>
27-
<a href="grover/3_sat_grover/3_sat_grover.ipynb">Grover search for a 3-SAT problem</a>
27+
<a href="search_and_optimization/grover/grover.ipynb">Grover search for a 3-SAT problem</a>
2828
</td>
2929
<td>Grover's algorithm for fast database search</td>
3030
<td>#grover #database_search</td>
3131
</tr>
3232
<tr>
3333
<td><a href="https://arxiv.org/abs/0811.3171" target="_blank">Quantum algorithm for solving linear systems of equations</a></td>
3434
<td>
35-
<a href="hhl/hhl/hhl.ipynb">HHL Implementation</a>
35+
<a href="quantum_linear_solvers/hhl/hhl.ipynb">HHL Implementation</a>
3636
</td>
3737
<td>HHL algorithm for solving linear systems</td>
3838
<td>#hhl #linear_systems</td>
3939
</tr>
4040
<tr>
4141
<td><a href="https://arxiv.org/abs/1411.4028" target="_blank">A Quantum Approximate Optimization Algorithm</a></td>
4242
<td>
43-
<a href="../algorithms/qaoa/maxcut/qaoa_maxcut.ipynb">Max Cut Problem</a>
43+
<a href="qaoa/qaoa.ipynb">Max Cut Problem</a>
4444
</td>
4545
<td>QAOA for combinatorial optimization problems</td>
4646
<td>#qaoa #optimization</td>
@@ -56,33 +56,33 @@ in the table or to add new ones.
5656
<tr>
5757
<td><a href="https://arxiv.org/abs/2303.13012" target="_blank">Exponential quantum speedup in simulating coupled classical oscillators</a></td>
5858
<td>
59-
<a href="glued_trees/glued_trees.ipynb">Glued Trees Implementation</a>
59+
<a href="quantum_walks/glued_trees/glued_trees.ipynb">Glued Trees Implementation</a>
6060
</td>
61-
<td>Exponential speedup in solving system of coupled harmonic oscilators</td>
61+
<td>Exponential speedup in solving system of coupled harmonic oscillators</td>
6262
<td>#quantum_speedup</td>
6363
</tr>
6464
<tr>
6565
<td><a href="https://royalsocietypublishing.org/doi/epdf/10.1098/rspa.1992.0167" target="_blank">Rapid solution of problems by quantum computation</a></td>
6666
<td>
67-
<a href="deutsch_jozsa/deutsch_jozsa.ipynb">Deutsch-Jozsa Implementation</a>
67+
<a href="foundational/deutsch_jozsa/deutsch_jozsa.ipynb">Deutsch-Jozsa Implementation</a>
6868
</td>
6969
<td>Deutsch-Jozsa algorithm for rapid problem solving</td>
7070
<td>#deutsch_jozsa #problem_solving</td>
7171
</tr>
7272
<tr>
7373
<td><a href="https://arxiv.org/abs/1806.01838" target="_blank">Quantum singular value transformation and beyond: exponential improvements for quantum matrix arithmetics</a></td>
7474
<td>
75-
<a href="../algorithms/qsvt/qsvt_matrix_inversion/qsvt_matrix_inversion.ipynb
75+
<a href="quantum_linear/qsvt/qsvt_matrix_inversion/qsvt_matrix_inversion.ipynb
7676
">QSVT matrix inversion</a><br>
77-
<a href="qsvt/qsvt_fixed_point_amplitude_amplification/qsvt_fixed_point_amplitude_amplification.ipynb">QSVT fixed point amplitude amplification</a><br>
77+
<a href="amplitude_amplification_and_estimation/qsvt_fixed_point_amplitude_amplification/qsvt_fixed_point_amplitude_amplification.ipynb">QSVT fixed point amplitude amplification</a><br>
7878
</td>
7979
<td>Introduction of the QSVT Algorithmic framework and its applications</td>
8080
<td>#qsvt #quantum_algorithms</td>
8181
</tr>
8282
<tr>
8383
<td><a href="https://epubs.siam.org/doi/10.1137/S0097539796298637" target="_blank">On the Power of Quantum Computation</a></td>
8484
<td>
85-
<a href="simon/simon.ipynb">Simon's Algorithm Implementation</a>
85+
<a href="foundational/simon/simon.ipynb">Simon's Algorithm Implementation</a>
8686
</td>
8787
<td>Simon's algorithm demonstrating quantum computational power</td>
8888
<td>#simon #quantum_computation</td>
@@ -91,7 +91,7 @@ in the table or to add new ones.
9191
<td><a href="https://arxiv.org/abs/2408.08292" target="_blank">Optimization by Decoded Quantum Interferometry
9292
</a></td>
9393
<td>
94-
<a href="dqi/dqi_max_xorsat.ipynb">DQI Algorithm Implementation</a>
94+
<a href="search_and_optimization/dqi/dqi_max_xorsat.ipynb">DQI Algorithm Implementation</a>
9595
</td>
9696
<td>Decoded Quantum Interferometry Algorithm for discrete optimization problems</td>
9797
<td>#dqi #quantum_algorithms</td>

0 commit comments

Comments
 (0)