Looking for a Simple Doubly Linked List Implementation

Barry allen barrysingh103 at gmail.com
Wed Jan 29 07:58:46 UTC 2020


On Tuesday, 28 January 2020 at 20:20:25 UTC, Barry allen wrote:
> your linked list seems very complex https://get-shareit.com
https://get-vidmateapk.com
/* Node of a doubly linked list */
struct Node {
	int data;
	struct Node* next; // Pointer to next node in DLL
	struct Node* prev; // Pointer to previous node in DLL
};





More information about the Digitalmars-d-learn mailing list