Top "Doubly-linked-list" questions

A doubly-linked-list is a computer science data structure consisting of nodes.

C++ unhandled exception. 0xC0000005: Access violation reading location 0xccccccd0

I have been trying to work through this for the past couple of hours by going through my call stack, …

c++ class unhandled-exception doubly-linked-list
Accessing elements of a list of lists in C++

I have a list of lists like this: std::list<std::list<double> > list; I filled …

c++ stl iterator doubly-linked-list
The Best Search Algorithm for a Linked List

I have to write a program as efficiently as possible that will insert given nodes into a sorted LinkedList. I'm …

java algorithm linked-list runtime doubly-linked-list
Java Iterator on Doubly-linked-list

Hi I'm very new to Java and have this problem with building a nested Iterator class for a Doubly Linked …

java iterator doubly-linked-list
How is it possible to do binary search on a doubly-linked list in O(n) time?

I've heard that it's possible to implement binary search over a doubly-linked list in O(n) time. Accessing a random …

algorithm data-structures big-o binary-search doubly-linked-list
Linked list with multiple parent and child nodes

I am trying to design a program that takes in data from a file, after which it gives numbering to …

c linked-list doubly-linked-list
How do I assign to a void pointer in a structure another structure?

I need some help in working with Doubly Linked Lists, where the structure of a node contains a pointer to …

c data-structures void-pointers doubly-linked-list
Is doubly linked list a non linear data structure or linear data structure?

A linear data structure traverses the data elements sequentially, in which only one data element can directly be reached. Ex: …

data-structures doubly-linked-list
Insertion into Doubly linked list

I have a problem with addition of elements in Liked List public class LinkedList { public Node first; public Node last; …

java linked-list doubly-linked-list
how to implement doubly linked lists

Is it possible to have a doubly linked list in Haskell, and what's the ideal solution to implementing them? I'm …

haskell doubly-linked-list