{"id":26242276,"url":"https://github.com/utkarshthedev/dsa","last_synced_at":"2026-02-23T08:34:54.522Z","repository":{"id":272118058,"uuid":"915566178","full_name":"UtkarshTheDev/DSA","owner":"UtkarshTheDev","description":"My DSA Practice notes,guide,test series and Questions.","archived":false,"fork":false,"pushed_at":"2025-02-16T12:43:08.000Z","size":115,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T23:41:15.897Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/UtkarshTheDev.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}},"created_at":"2025-01-12T07:36:33.000Z","updated_at":"2025-02-16T12:43:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"42c356da-8b8e-4d4b-8857-13a6b0b1df02","html_url":"https://github.com/UtkarshTheDev/DSA","commit_stats":null,"previous_names":["developer-utkarsh/dsa","utkarshthedev/dsa"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UtkarshTheDev%2FDSA","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UtkarshTheDev%2FDSA/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UtkarshTheDev%2FDSA/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UtkarshTheDev%2FDSA/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UtkarshTheDev","download_url":"https://codeload.github.com/UtkarshTheDev/DSA/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250435453,"owners_count":21430289,"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","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":[],"created_at":"2025-03-13T09:50:17.473Z","updated_at":"2026-02-23T08:34:54.453Z","avatar_url":"https://github.com/UtkarshTheDev.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Data Structures \u0026 Algorithms Learning Repository 🚀\n\nWelcome to my DSA learning journey! This repository serves as a comprehensive guide for learning, practicing, and revising Data Structures and Algorithms in C++.\n\n## Repository Structure 📂\n\n```\ndsa/\n├── basics/          # C++ fundamentals and basic concepts\n├── data-structures/ # DS implementations and theory\n├── algorithms/      # Algorithm implementations and concepts\n├── techniques/      # Problem-solving patterns and approaches\n├── leetcode/        # LeetCode solutions and notes\n└── practice/        # Additional practice problems\n```\n\n## Solution Documentation Structure 📝\n\nEach problem solution should include:\n\n### 1. Problem Documentation (`problem.md`)\n```markdown\n# Problem Name\n\n## Description\n[Problem description]\n\n## Constraints\n- Time Limit: O(?)\n- Space Limit: O(?)\n- Input Constraints\n\n## Examples\n[Input/Output examples]\n```\n\n### 2. Visual Documentation (`diagrams/`)\n- Use `.drawio` files for diagrams (VS Code Draw.io Integration)\n- Include both source `.drawio` and exported `.png` files\n- Naming convention: `approach1-flow.drawio`, `memory-layout.drawio`\n\n### 3. Pseudocode (`pseudocode.md`)\n```markdown\n# Approach 1: [Name]\n\n## High-level Idea\n[Brief explanation]\n\n## Pseudocode\n```algorithm\nfunction solve(input):\n    // Step 1: Initialize\n    ...\n    // Step 2: Process\n    ...\n    // Step 3: Return result\n    return result\n```\n\n### 4. Implementation (`solution.cpp`)\n```cpp\n/**\n * Solution for: [Problem Name]\n * Approach: [Approach Name]\n * \n * Time: O(?)\n * Space: O(?)\n */\nclass Solution {\n    // Implementation\n};\n```\n\n## Example Problem Structure\n```\nproblem-name/\n├── problem.md           # Problem description\n├── diagrams/\n│   ├── approach1.drawio # Draw.io source file\n│   └── approach1.png    # Exported diagram\n├── pseudocode.md        # Algorithm steps\n├── solution.cpp         # Implementation\n└── README.md           # Solution explanation\n```\n\n## Setting Up VS Code for Diagrams 🎨\n\n1. Install Draw.io Integration:\n   - Open VS Code\n   - Go to Extensions (Ctrl+Shift+X)\n   - Search for \"Draw.io Integration\"\n   - Install the extension\n\n2. Creating Diagrams:\n   - Create a new file with `.drawio` extension\n   - VS Code will open the Draw.io editor\n   - Create your diagram\n   - Export as PNG if needed\n\n3. Recommended Diagram Types:\n   - Flow diagrams\n   - Memory layouts\n   - Tree/Graph visualizations\n   - State transitions\n   - Algorithm steps\n\n## Best Practices for Documentation 📚\n\n1. **Problem Analysis**\n   - Break down the problem\n   - List edge cases\n   - Draw initial examples\n\n2. **Visual Documentation**\n   - Use consistent colors/shapes\n   - Label important components\n   - Show step-by-step flow\n\n3. **Pseudocode**\n   - Use clear naming\n   - Include comments\n   - Show complexity analysis\n\n4. **Implementation**\n   - Match pseudocode structure\n   - Add detailed comments\n   - Include test cases\n\n## Contributing 🤝\n\nFeel free to:\n- Add more problems and solutions\n- Improve existing solutions\n- Add better explanations\n- Suggest improvements\n\n## Progress Tracking 📊\n\n- Use GitHub issues for tracking topics to learn\n- Create milestones for major concept completions\n- Use project boards for organizing current focus areas\n\n## Resources 📖\n\n- [LeetCode Profile](https://leetcode.com/u/developer_utkarsh/)\n- [DSA Youtube Playlist](https://www.youtube.com/playlist?list=PLfqMhTWNBTe137I_EPQd34TsgV6IO55pt)\n\n## Happy Learning! 🎯\n\nRemember:\n\u003e \"The only way to learn a new programming language is by writing programs in it.\" - Dennis Ritchie\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futkarshthedev%2Fdsa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futkarshthedev%2Fdsa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futkarshthedev%2Fdsa/lists"}