package
0.0.0-20230710210237-5ce2504b62fa
Repository: https://github.com/shomali11/go-interview.git
Documentation: pkg.go.dev
# README
Description
Implement a Doubly Linked List. A doubly Linked List is a variation of Linked list in which navigation is possible in both ways, either forward and backward easily as compared to singly linked list.
Example:
Input: Insert "value1", Insert "value2", Insert "value3", Remove First
Output: ["value2", "value3"]
# Functions
New factory to generate new doubly linked lists.
# Structs
DLLNode doubly linked list node.
DoublyLinkedList doubly linked list structure.