sudo-parnab / Its-algober

Join our Hacktoberfest initiative and contribute to open-source programming and data structures & algorithms projects. It's a great opportunity for beginners to learn and grow. Let's build a stronger community together.
MIT License
6 stars 14 forks source link

Implement Linked List in Python #33

Closed MadhavNair4 closed 3 weeks ago

MadhavNair4 commented 3 weeks ago

Description

  • insertStart() to insert a node at the start of the linked list insertEnd() to insert a node at the end of the linked list
  • insertIndex() to insert a node at the given index of the linked list
  • removeStart() to remove a node at the start of the linked list
  • removeEnd() to remove a node at the end of the linked list
  • removeIndex() to remove a node at the given index of the linked list
  • removeData() to remove a node with the given data
  • updateNode() to change the data of the node at the given index to the new value
  • printList() to print the linked list

Tech Stack and Dependencies

Type of change

Issue number: Fixes #32

Checklist:

sudo-parnab commented 3 weeks ago

thank you @MadhavNair4