{"id":29538774,"url":"https://github.com/priya-c-016/sorting-analyzer","last_synced_at":"2026-05-06T02:35:17.859Z","repository":{"id":304502947,"uuid":"1018959684","full_name":"Priya-C-016/Sorting-Analyzer","owner":"Priya-C-016","description":"A visual tool to analyze sorting algorithm performance.","archived":false,"fork":false,"pushed_at":"2025-07-13T13:24:30.000Z","size":1442,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-13T15:27:37.952Z","etag":null,"topics":["cpp","css","html","javascript","python","sorting-algorithms"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Priya-C-016.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-13T12:40:33.000Z","updated_at":"2025-07-13T13:28:34.000Z","dependencies_parsed_at":"2025-07-13T15:27:40.046Z","dependency_job_id":"434cafc4-222c-499c-9dae-95cb467a6a40","html_url":"https://github.com/Priya-C-016/Sorting-Analyzer","commit_stats":null,"previous_names":["priya-c-016/sorting-analyzer"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Priya-C-016/Sorting-Analyzer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priya-C-016%2FSorting-Analyzer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priya-C-016%2FSorting-Analyzer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priya-C-016%2FSorting-Analyzer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priya-C-016%2FSorting-Analyzer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Priya-C-016","download_url":"https://codeload.github.com/Priya-C-016/Sorting-Analyzer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Priya-C-016%2FSorting-Analyzer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279004797,"owners_count":26083783,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","css","html","javascript","python","sorting-algorithms"],"created_at":"2025-07-17T05:15:35.288Z","updated_at":"2025-10-10T17:03:09.182Z","avatar_url":"https://github.com/Priya-C-016.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e🔍 Sorting Analyzer\u003c/h1\u003e\n\u003cp align=\"center\"\u003e\n  Compare popular sorting algorithms with visual charts, metrics, and real performance data.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/Priya-C-016/Sorting-Analyzer/blob/main/images/Screenshot%20(432).png\" width=\"700\" alt=\"Landing Page\"\u003e\n\u003c/p\u003e\n\n---\n\n## 🚀 Features\n\n- 🧮 Compare multiple sorting algorithms\n- ⏱️ Tracks execution time, comparisons, and swaps\n- 📊 Interactive Chart.js graphs\n- 🏆 Highlights best-fit algorithm\n- 🌙 Light/Dark mode support (toggle)\n- ⚙️ Python + C++ backend integration\n- 💥 Handles up to 1000+ element arrays\n\n---\n# Porject Structure\n```\nsorting-analyzer/\n├── sort.cpp         # Sorting logic in C++\n├── bridge.py        # Python bridge (calls C++ and returns JSON)\n├── index.html       # Main frontend UI\n├── output.html      # (optional) output display file\n├── result.json      # Output JSON of sorting metrics\n├── assets/          # Screenshots for README\n└── README.md        # This file\n```\n\n## 📦 Tech Stack\n\n| Frontend  | Backend        | Charting      | Language Support |\n|-----------|----------------|---------------|------------------|\n| HTML/CSS/JS | Python + Flask | Chart.js      | Python \u0026 C++     |\n\n---\n\n## 🔧 Setup \u0026 Usage\n\n\n### 1️⃣ Clone the repository\n```\ngit clone https://github.com/yourusername/sorting-analyzer.git\ncd sorting-analyzer\n```\n\n### 2️⃣ Compile C++ backend\n```\ng++ sort.cpp -o sort\n```\n### 3️⃣ Run the Flask bridge\n```\npython bridge.py\n```\n### 4️⃣ Open the interface\n```\n# Use Live Server or open index.html directly in a browser\n```\n\n## 🖼️ UI Walkthrough\n\n### 🏠 Home / Landing Page\n\u003e Overview of the Sorting Analyzer interface.\n![Homepage](https://github.com/Priya-C-016/Sorting-Analyzer/blob/main/images/Screenshot%20(432).png)\n\n---\n\n### ⌨️ Array Input Bar\n\u003e Enter any custom array (comma-separated) to analyze sorting performance.\n![Input Bar](https://github.com/Priya-C-016/Sorting-Analyzer/blob/main/images/Screenshot%20(429).png)\n\n---\n\n### 📊 Sorting Performance Chart\n\u003e Visual comparison of algorithms based on execution time, comparisons, and swaps.\n![Chart](https://github.com/Priya-C-016/Sorting-Analyzer/blob/main/images/Screenshot%20(435).png)\n\n---\n\n### 🏆 Best Sorting Algorithm\n\u003e Automatically highlights the most efficient algorithm for your input.\n![Best Algorithm](https://github.com/Priya-C-016/Sorting-Analyzer/blob/main/images/Screenshot%20(434).png)\n\n---\n\n### 📋 Algorithm Details Section\n\u003e View time complexity, space usage, sorted output, and metrics for any algorithm.\n![Algorithm Details](https://github.com/Priya-C-016/Sorting-Analyzer/blob/main/images/Screenshot%20(431).png)\n\n\n# Contributing\nPull requests and issues are welcome!\nIf you want to add more algorithms or visualization modes, feel free to fork and PR.\n\n\u003ch2\u003e🧠 Inspiration\u003c/h2\u003e\n\n\u003ctable border=\"0\"\u003e\n\u003ctr\u003e\n\u003ctd\u003e\n\nInspired by the curiosity of understanding algorithm performance and bringing **visual clarity** to classic Computer Science problems.  \nBuilt with ❤, logic, and a dash of ✨ JavaScript by **Priya**.\n\n\u003c/td\u003e\n\u003ctd\u003e\n\n\u003cimg src=\"https://github.com/Priya-C-016/PinkPetal/blob/main/public/images/girl.webp\" width=\"250\" alt=\"Sorting Visual Preview\"/\u003e\n\n\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/table\u003e\n\n\n\u003ch3 align=\"center\"\u003e✨ Happy Sorting! ✨\u003c/h3\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpriya-c-016%2Fsorting-analyzer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpriya-c-016%2Fsorting-analyzer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpriya-c-016%2Fsorting-analyzer/lists"}