Loading repository dataโฆ
Loading repository dataโฆ
alienx5499 / repository
SortVision is a web-based sorting algorithm visualizer ๐ฅ๏ธ that lets users explore and compare algorithms like Bubble, Quick, Merge, and more ๐. Easily adjust speed โก and array size ๐ to watch the sorting process in real-time. Perfect for students and enthusiasts looking to understand sorting mechanics!
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
SortVision is an interactive web application that brings sorting algorithms to life through real-time visualization. Built with modern web technologies, it provides an engaging platform for learning and understanding various sorting algorithms.
"Visualize your data, understand sorting better!"
Made algorithms click for you? You're exactly who we built this for! โจ Help other developers discover what you just experienced ๐
๐ญ "Every star motivates us to add more algorithms and features!" - The SortVision Team
SortVision/
โโ .github/ # GitHub specific configurations
โ โโ ISSUE_TEMPLATE/ # Templates for GitHub issues
โ โ โโ bug_report.md # Bug report template
โ โ โโ config.yml # Issue template configuration
โ โ โโ documentation.md # Documentation request template
โ โ โโ feature_request.md # Feature request template
โ โ โโ performance.md # Performance issue template
โ โโ dependabot.yml # Dependabot configuration
โ โโ pull_request_template.md # PR template
โโ .gitignore # Git ignore configuration
โโ CODE_OF_CONDUCT.md # Community code of conduct
โโ CONTRIBUTING.md # Contribution guidelines
โโ LICENSE # MIT license file
โโ README.md # Project documentation (this file)
โโ SECURITY.md # Security policy and reporting
โโ SortVision/ # Main application directory
โโ .env.example # Environment variables template
โโ Dockerfile # Docker containerization config
โโ api/ # API endpoints
โ โโ gemini.js # Gemini AI API integration
โโ components.json # Component configuration
โโ docker-compose.yml # Docker Compose configuration
โโ eslint.config.js # ESLint configuration
โโ jsconfig.json # JavaScript configuration
โโ next.config.mjs # Next.js configuration
โโ nginx.conf # Nginx configuration
โโ package-lock.json # NPM package lock
โโ package.json # NPM package definition
โโ pnpm-lock.yaml # PNPM package lock
โโ postcss.config.mjs # PostCSS configuration
โโ public/ # Public static assets
โ โโ code/ # Algorithm implementations in multiple languages
โ โ โโ bubble/ # Bubble Sort implementations
โ โ โ โโ c/ # C implementation
โ โ โ โ โโ bubbleSort.c
โ โ โ โโ cpp/ # C++ implementation
โ โ โ โ โโ bubbleSort.cpp
โ โ โ โโ csharp/ # C# implementation
โ โ โ โ โโ bubbleSort.cs
โ โ โ โโ dart/ # Dart implementation
โ โ โ โ โโ bubbleSort.dart
โ โ โ โโ golang/ # Go implementation
โ โ โ โ โโ bubbleSort.go
โ โ โ โโ haskell/ # Haskell implementation
โ โ โ โ โโ bubbleSort.hs
โ โ โ โโ java/ # Java implementation
โ โ โ โ โโ bubbleSort.java
โ โ โ โโ javascript/ # JavaScript implementation
โ โ โ โ โโ bubbleSort.js
โ โ โ โโ julia/ # Julia implementation
โ โ โ โ โโ bubbleSort.jl
โ โ โ โโ kotlin/ # Kotlin implementation
โ โ โ โ โโ bubbleSort.kt
โ โ โ โโ lua/ # Lua implementation
โ โ โ โ โโ bubbleSort.lua
โ โ โ โโ php/ # PHP implementation
โ โ โ โ โโ bubbleSort.php
โ โ โ โโ pseudocode/ # Pseudocode representation
โ โ โ โ โโ bubbleSort.txt
โ โ โ โโ python/ # Python implementation
โ โ โ โ โโ bubbleSort.py
โ โ โ โโ r/ # R implementation
โ โ โ โ โโ bubbleSort.r
โ โ โ โโ ruby/ # Ruby implementation
โ โ โ โ โโ bubbleSort.rb
โ โ โ โโ rust/ # Rust implementation
โ โ โ โ โโ bubbleSort.rs
โ โ โ โโ scala/ # Scala implementation
โ โ โ โ โโ bubbleSort.scala
โ โ โ โโ swift/ # Swift implementation
โ โ โ โ โโ bubbleSort.swift
โ โ โ โโ typescript/ # TypeScript implementation
โ โ โ โโ bubbleSort.ts
โ โ โโ bucket/ # Bucket Sort implementations (same structure)
โ โ โโ heap/ # Heap Sort implementations (same structure)
โ โ โโ insertion/ # Insertion Sort implementations (same structure)
โ โ โโ merge/ # Merge Sort implementations (same structure)
โ โ โโ quick/ # Quick Sort implementations (same structure)
โ โ โโ radix/ # Radix Sort implementations (same structure)
โ โ โโ selection/ # Selection Sort implementations (same structure)
โ โโ devTools/ # Developer tools directory
โ โ โโ core.js # Core utilities and initialization
โ โ โโ device-info.js # Device detection and information
โ โ โโ index.js # Main entry point for debug tools
โ โ โโ monitoring.js # Performance monitoring utilities
โ โ โโ performance.js # Performance metrics tracking
โ โ โโ ui.js # Debug UI components and panel
โ โโ favicon.svg # Site favicon
โ โโ google12e2679e2ea95334.html # Google site verification
โ โโ manifest.json # PWA manifest
โ โโ mobile.css # Mobile-specific styles
โ โโ og-image.png # Open Graph image for sharing
โ โโ robots.txt # Search engine crawling instructions
โ โโ sitemap.xml # Site map for search engines
โ โโ splash.svg # App splash screen
โ โโ sw.js # Service worker for offline support
โ โโ twitter-image.png # Twitter card image
โโ scripts/ # Build and utility scripts
โ โโ generate-sitemap.js # Sitemap generator
โโ server/ # Backend server directory
โ โโ index.js # Express server for API proxy
โโ src/ # Source code directory
โ โโ App.css # App-level styles
โ โ