Skip to content

Commit c539f87

Browse files
committed
sync changes:
- M scripts/template/html.py - M site/algorithms/BFS.html - M site/algorithms/DAGs.html
1 parent efa19be commit c539f87

File tree

874 files changed

+1587
-1587
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

874 files changed

+1587
-1587
lines changed

scripts/template/html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
</time>
8383
{% if category %}
8484
<span>Category: <a href="/categories/{{ category|lower|urlencode }}.html">{{ category }}</a></span>
85-
<span> | <a id="parent-link" href="/">..</a></span>
85+
<span><a id="parent-link" href="index.html">..</a></span>
8686
{% endif %}
8787
</div>
8888
<div class={{ css_selector }}>

site/algorithms/BFS.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>Breadth First Search Algorithm Implementation and Analysis</h1>
7979
Last modified: 2025-02-11
8080
</time>
8181
<span>Category: <a href="/categories/algorithms.html">Algorithms</a></span>
82-
<span> | <a id="parent-link" href="/">..</a></span>
82+
<span><a id="parent-link" href="index.html">..</a></span>
8383
</div>
8484
<div class=markdown-content content>
8585
<h1 id="breadth-first-search">Breadth First Search</h1>

site/algorithms/DAGs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>Topological Ordering and Properties of Directed Acyclic Graphs</h1>
7979
Last modified: 2025-02-11
8080
</time>
8181
<span>Category: <a href="/categories/algorithms.html">Algorithms</a></span>
82-
<span> | <a id="parent-link" href="/">..</a></span>
82+
<span><a id="parent-link" href="index.html">..</a></span>
8383
</div>
8484
<div class=markdown-content content>
8585
<h1 id="directed-acyclic-graphs-dags">Directed Acyclic Graphs (DAGs)</h1>

site/algorithms/DFS.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>Depth First Search Algorithm and Tree Properties</h1>
7979
Last modified: 2025-02-11
8080
</time>
8181
<span>Category: <a href="/categories/algorithms.html">Algorithms</a></span>
82-
<span> | <a id="parent-link" href="/">..</a></span>
82+
<span><a id="parent-link" href="index.html">..</a></span>
8383
</div>
8484
<div class=markdown-content content>
8585
<h1 id="depth-first-search-dfs">Depth First Search (DFS)</h1>

site/algorithms/approximation-algorithms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>Approximation Algorithms</h1>
7979
Last modified: 2025-02-11
8080
</time>
8181
<span>Category: <a href="/categories/algorithms.html">Algorithms</a></span>
82-
<span> | <a id="parent-link" href="/">..</a></span>
82+
<span><a id="parent-link" href="index.html">..</a></span>
8383
</div>
8484
<div class=markdown-content content>
8585
<h1 id="approximation-algorithms">Approximation Algorithms</h1>

site/algorithms/bipartite-graphs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>Bipartite Graphs Properties, Proofs, and Detection Algorithm</h1>
7979
Last modified: 2025-01-01
8080
</time>
8181
<span>Category: <a href="/categories/graph%20theory.html">Graph Theory</a></span>
82-
<span> | <a id="parent-link" href="/">..</a></span>
82+
<span><a id="parent-link" href="index.html">..</a></span>
8383
</div>
8484
<div class=markdown-content content>
8585
<h1 id="bipartite-graphs">Bipartite Graphs</h1>

site/algorithms/connected-components.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>Finding Connected Components in Undirected Graphs Using BFS/DFS</h1>
7979
Last modified: 2025-02-11
8080
</time>
8181
<span>Category: <a href="/categories/algorithms.html">Algorithms</a></span>
82-
<span> | <a id="parent-link" href="/">..</a></span>
82+
<span><a id="parent-link" href="index.html">..</a></span>
8383
</div>
8484
<div class=markdown-content content>
8585
<h1 id="connected-components">Connected Components</h1>

site/algorithms/divide-and-conquer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>Divide and Conquer Algorithm Analysis with Implementation Examples</h1>
7979
Last modified: 2025-02-11
8080
</time>
8181
<span>Category: <a href="/categories/algorithms.html">Algorithms</a></span>
82-
<span> | <a id="parent-link" href="/">..</a></span>
82+
<span><a id="parent-link" href="index.html">..</a></span>
8383
</div>
8484
<div class=markdown-content content>
8585
<h1 id="divide-and-conquer">Divide and Conquer</h1>

site/algorithms/dynamic-programming.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>Dynamic Programming Algorithms and Problem Solutions Guide</h1>
7979
Last modified: 2025-02-11
8080
</time>
8181
<span>Category: <a href="/categories/algorithms.html">Algorithms</a></span>
82-
<span> | <a id="parent-link" href="/">..</a></span>
82+
<span><a id="parent-link" href="index.html">..</a></span>
8383
</div>
8484
<div class=markdown-content content>
8585
<h1 id="dynamic-programming">Dynamic Programming</h1>

site/algorithms/graphs-intro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>Introduction to Undirected Graphs and Their Properties</h1>
7979
Last modified: 2025-01-01
8080
</time>
8181
<span>Category: <a href="/categories/graph%20theory.html">Graph Theory</a></span>
82-
<span> | <a id="parent-link" href="/">..</a></span>
82+
<span><a id="parent-link" href="index.html">..</a></span>
8383
</div>
8484
<div class=markdown-content content>
8585
<h1 id="graphs-introduction">Graphs Introduction</h1>

0 commit comments

Comments
 (0)