Skip to content

Commit 9c47274

Browse files
committed
updated, application version, updated changelog, readme file as well
1 parent ca40951 commit 9c47274

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.6.0 (Oct 15, 2024)
4+
5+
- **Floyd Warshall Algorithm:** Implemented the Floyd warshall algorithm for finding the shortest path in a weighted graph.
6+
- **Loading State Management:** Added loading state management during the execution of the algorithm.
7+
- **Error Handling:** Implemented error handling to log errors in development mode.
8+
39
## 1.5.5 (Oct 10, 2024)
410

511
- **Bellman-Ford Algorithm:** Implemented the Bellman-Ford algorithm for finding the shortest path in a weighted graph.

README.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,12 @@ A Next.js 14 project for visualizing famous algorithms using React, TypeScript,
88

99
1. **Unique Path Finding**: Solve the unique paths problem in a grid.
1010
2. **Number of Islands Problem**: Visualize the algorithm to count the number of islands.
11-
3. **Shortest Path Finding**: Implementations of Bellman-Ford and Dijkstra's algorithms for shortest path calculations.
11+
3. **Shortest Path Finding**: Implementations of `Bellman-Ford`, `Floyd Warshall` and `Dijkstra's` algorithms for shortest path calculations.
1212

1313
- **N-Queens Problem**: Interactive visualization of the N-Queens problem, demonstrating various solutions and techniques.
14-
1514
- **Tree and Graph Traversals**: Visualize traversal algorithms including depth-first search (DFS) with in-order, pre-order, and post-order techniques, as well as breadth-first search (BFS).
16-
1715
- **Sorting Algorithms**: Visualize five sorting algorithms, including merge sort, quick sort, heap sort (with a tree graph visualization), selection sort, and bubble sort.
18-
1916
- **Interactive UI**: Built with React and styled using Tailwind CSS, providing a user-friendly interface for exploring algorithms.
20-
2117
- **Linked List Operations** :
2218

2319
1. **Basic Operations** : Create, find, and delete nodes in a linked list.
@@ -58,10 +54,12 @@ npm install
5854
```
5955

6056
4. Start the development server:
61-
```
62-
npm run dev
63-
```
64-
The application will be available at http://localhost:3000.
57+
58+
```sh {"id":"01JA7DBZ9NEQ04ND8EJW745P39"}
59+
npm run dev
60+
```
61+
62+
The application will be available at http://localhost:3000.
6563

6664
### Usage
6765

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algorithm-visualizer",
3-
"version": "1.5.5",
3+
"version": "1.6.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

0 commit comments

Comments
 (0)