Skip to content

feat: add linked list implementation in Python#73

Open
Poonam-Biradar wants to merge 1 commit into
tripti-gupta700:mainfrom
Poonam-Biradar:feature/add-linked-list-python
Open

feat: add linked list implementation in Python#73
Poonam-Biradar wants to merge 1 commit into
tripti-gupta700:mainfrom
Poonam-Biradar:feature/add-linked-list-python

Conversation

@Poonam-Biradar
Copy link
Copy Markdown

🔗 Related Issue

Closes #14


📝 What did you do?

Added a complete Singly Linked List implementation in Python.

Also created the folder structure DSA/LinkedList/ since it was not present in the repository.

Implemented the following operations:

  • Insert at beginning
  • Insert at end
  • Delete node
  • Search element
  • Display linked list
  • Reverse linked list

Added comments and example usage for better understanding.


🗂️ Type of Change

  • ✨ New solution / feature
  • 🐛 Bug fix
  • 📝 Documentation update
  • 🧹 Code cleanup / refactor

✅ Self-Review Checklist

  • My code runs without errors
  • I followed the folder structure from the README
  • I added comments/docstrings explaining my logic
  • My branch name is descriptive
  • I linked the issue above
  • I haven't modified unrelated files

📸 Screenshots / Output (if applicable)

Example Output:

10 -> 20 -> 30 -> None
10 -> 30 -> None
30 -> 10 -> None

💬 Anything else?

This contribution is beginner-friendly and can help new contributors understand basic Linked List operations in Python.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add Linked List implementation | Python / C++ | Data Structures |

1 participant