Skip to content

Conversation

@saishmungase
Copy link

Description

This PR updates the README.md file within the Python/data_structures/ directory to reflect recently added implementations and improve organization based on current folder structure.

  • Adds the new queue/ directory to the structure overview.
  • Creates a dedicated "Queues" section detailing the initial implementations added (ArrayQueue, Queue using Stacks).
  • Includes basic Python examples for using collections.deque, queue.Queue, and heapq for queues.
  • Updates the "Stacks" section's Current Implementations to include Stack with Min.
  • Note: Priority list status markers ([IMPLEMENTED]) were not added in this version, keeping it as it was.

This aligns with the Hacktoberfest strategy suggestion of including documentation contributions.

Checklist

  • README accurately reflects the current structure and implementations listed within this update.
  • Follows markdown formatting.
  • Commit message describes the documentation changes.
  • This PR is only for documentation updates.

…on list- Time Complexity: Enqueue O(1) avg, Dequeue O(n)- Space Complexity: O(n)
…stacks- Time Complexity: Enqueue O(1), Dequeue O(1) amortized- Space Complexity: O(n)
…) get_min operation- Time Complexity: Push O(1), Pop O(1), Top O(1), GetMin O(1)- Space Complexity: O(n)
…ection- List initial queue implementations- Add Stack with Min implementation
@github-actions
Copy link

🎉 Welcome to Hacktoberfest 2025, @saishmungase! 🎃

Thank you for your first contribution to our DSA repository! Here's what happens next:

🔍 Automatic Checks

  • Code Validation: Passed
  • 🧪 Compilation Tests: Passed

📋 Next Steps

🎯 Great job! Your code compiled successfully. Maintainers @Karanjot786 and @Pradeepsingh61 will review your PR soon.

🎁 What You Get

  • 🏆 Hacktoberfest Credit: This PR counts toward your 6 PR goal for exclusive T-shirt + Tree!
  • 🌟 Hall of Fame: You'll be featured in our contributors list
  • 📚 Learning: Code review feedback from experienced developers

💡 Tips for Success

  • Follow our Contributing Guidelines
  • Add comments explaining your algorithm
  • Include time/space complexity analysis
  • Test your code before submitting

Welcome to the community! 🚀

@github-actions
Copy link

🤖 Automated PR Status

🔍 Code Validation

Passed - File naming and structure look good!

🧪 Compilation Tests

Passed - All code compiles successfully!

📋 Overall Status

🎉 Ready for Review - Your PR has passed all automated checks!
👥 Maintainers have been notified for review.


This comment was generated automatically. Checks will re-run when you push new commits.

@github-actions github-actions bot requested a review from Karanjot786 October 27, 2025 15:50
@saishmungase
Copy link
Author

Hey @Pradeepsingh61 , @Karanjot786 Can You Please check this PR ?

@saishmungase saishmungase closed this by deleting the head repository Oct 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant