docs: Update README with deploy URL and content refinements, and ignore .factory files.
This commit is contained in:
parent
a4b22bbd07
commit
34326b54f1
|
|
@ -27,3 +27,4 @@ build/
|
||||||
*.swo
|
*.swo
|
||||||
thumbs.db
|
thumbs.db
|
||||||
/docs
|
/docs
|
||||||
|
/.factory
|
||||||
13
README.md
13
README.md
|
|
@ -1,5 +1,7 @@
|
||||||
# Algorithm Test Case Generation and Verification Platform
|
# Algorithm Test Case Generation and Verification Platform
|
||||||
|
|
||||||
|
Deploy URL: https://pd-final.hissin.net/
|
||||||
|
|
||||||
## Project Structure
|
## Project Structure
|
||||||
- `backend/`: FastAPI Python Backend
|
- `backend/`: FastAPI Python Backend
|
||||||
- `frontend/`: React Vite Frontend
|
- `frontend/`: React Vite Frontend
|
||||||
|
|
@ -17,7 +19,6 @@ docker-compose up --build
|
||||||
Then access:
|
Then access:
|
||||||
- **Frontend**: http://localhost
|
- **Frontend**: http://localhost
|
||||||
- **Backend API**: http://localhost:8000
|
- **Backend API**: http://localhost:8000
|
||||||
- **API Docs**: http://localhost:8000/docs
|
|
||||||
|
|
||||||
### Manual Setup
|
### Manual Setup
|
||||||
|
|
||||||
|
|
@ -38,12 +39,4 @@ cd frontend
|
||||||
npm install
|
npm install
|
||||||
npm run dev
|
npm run dev
|
||||||
```
|
```
|
||||||
Frontend will run at `http://localhost:5173`
|
Frontend will run at `http://localhost:5173`
|
||||||
|
|
||||||
## Features Implemented
|
|
||||||
1. **Maximum Subarray Sum**:
|
|
||||||
- Brute Force ($O(N^2)$)
|
|
||||||
- Divide & Conquer ($O(N \log N)$)
|
|
||||||
- Kadane's Algorithm ($O(N)$)
|
|
||||||
- Automatic Random Case Generation
|
|
||||||
- Performance Benchmarking & Visualization
|
|
||||||
Loading…
Reference in New Issue