docs: Update README with deploy URL and content refinements, and ignore .factory files.

This commit is contained in:
hissin 2025-11-21 15:27:36 +08:00
parent a4b22bbd07
commit 34326b54f1
2 changed files with 4 additions and 10 deletions

1
.gitignore vendored
View File

@ -27,3 +27,4 @@ build/
*.swo
thumbs.db
/docs
/.factory

View File

@ -1,5 +1,7 @@
# Algorithm Test Case Generation and Verification Platform
Deploy URL: https://pd-final.hissin.net/
## Project Structure
- `backend/`: FastAPI Python Backend
- `frontend/`: React Vite Frontend
@ -17,7 +19,6 @@ docker-compose up --build
Then access:
- **Frontend**: http://localhost
- **Backend API**: http://localhost:8000
- **API Docs**: http://localhost:8000/docs
### Manual Setup
@ -38,12 +39,4 @@ cd frontend
npm install
npm run dev
```
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
Frontend will run at `http://localhost:5173`