Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doubly LinkedList Implementation #1689

Closed
Rohanfizz opened this issue Oct 8, 2020 · 3 comments
Closed

Doubly LinkedList Implementation #1689

Rohanfizz opened this issue Oct 8, 2020 · 3 comments

Comments

@Rohanfizz
Copy link

@Rohanfizz Rohanfizz commented Oct 8, 2020

Doubly LinkedList is a data structure which is really helpful and Some Advantages over singly linked list are mentioned below->

  1. A DLL can be traversed in both forward and backward direction.
  2. The delete operation in DLL is more efficient if pointer to the node to be deleted is given.
  3. We can quickly insert a new node before a given node.
@Rohanfizz
Copy link
Author

@Rohanfizz Rohanfizz commented Oct 8, 2020

#1688 #

@rbshealy
Copy link
Contributor

@rbshealy rbshealy commented Oct 10, 2020

We already have a DoubleLinkedList.java implementation

@Rohanfizz
Copy link
Author

@Rohanfizz Rohanfizz commented Oct 14, 2020

oh Okay

@Rohanfizz Rohanfizz closed this Oct 14, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
2 participants
You can’t perform that action at this time.