Tagged Questions
A linked list is a data structure in which the elements contain references to the next (and optionally the previous) element. Linked lists offer O(1) insert and removal at any position, O(1) list concatenation, and O(1) access at the front (and optionally back) positions as well as O(1) next element access. Random access has O(N) complexity and is usually unimplemented.
166
votes
18answers
72k views
When to use LinkedList<> over ArrayList<>?
I've always been one to simply use List<String> names = new ArrayList<String>();
I use the interface as the type name for portability, so that when I ask questions such as these I can ...
74
votes
16answers
6k views
Interview question: How to detect a loop in a linked list?
Say you have a linked list structure in Java. It's made up of Nodes:
class Node {
Node next;
// some user data
}
and each Node points to the next node, except for the last Node, which has ...
48
votes
5answers
16k views
When should I use a List vs a LinkedList
When is it better to use a List(Of T) vs a LinkedList(Of T)?
39
votes
3answers
1k views
Linked list loop detection algorithm
I read some interview question online about how would you find if there's a loop in a linked list, and solution (Floyd's cycle-finding algorithm) is to have two pointers, one is 2x faster than the ...
31
votes
5answers
2k views
Doubly Linked List in a Purely Functional Programming Language
How does one go about doing doubly linked lists in a pure functional language? That is, something like Haskell where you're not in a Monad so you don't have mutation. Is it possible? (Singly linked ...
30
votes
12answers
2k views
Under what circumstances are linked lists useful?
Most times I see people try to use linked lists, it seems to me like a poor (or very poor) choice. Perhaps it would be useful to explore the circumstances under which a linked list is or is not a good ...
29
votes
4answers
2k views
Interview: Remove Loop in linked list - Java
I was asked this question in interview: "How to detect the loop in linked list?", I solved this but immediately the interviewer asked me how do I remove the loop in a linked list. I fumbled.
So any ...
22
votes
10answers
23k views
Binary Trees vs. Linked Lists vs. Hash Tables
I'm building a symbol table for a project I'm working on. I was wondering what peoples opinions are on the advantages and disadvantages of the various methods available for storing + creating a symbol ...
21
votes
11answers
18k views
Python Linked List
What's the easiest way to use a linked list in python? In scheme, a linked list is defined simply by '(1 2 3 4 5). Python's lists, [1, 2, 3, 4, 5], and tuples, (1, 2, 3, 4, 5), are not, in fact, ...
21
votes
6answers
77k views
How do I implement a Linked List in Java? [closed]
What's the best way to make a linked list in Java?
16
votes
14answers
14k views
Reverse a singly linked list
I would be wondered if there exists some logic to reverse the linked list using only two pointers.
The following is used to reverse the single linked list using three pointers namely p, q, r:
struct ...
16
votes
11answers
6k views
What is an efficient algorithm to find whether a singly linked list is circular/cyclic or not?
How can i find whether a singly linked list is circular/cyclic or not? I Tried searching but couldn't find a satisfactory solution. If possible, can you provide pseudocode or Java?
For Example
1 3 5 ...
16
votes
11answers
7k views
Best algorithm to test if a linked list has a cycle
What's the best (halting) algorithm for determining if a linked list has a cycle in it?
[Edit] Analysis of asymptotic complexity for both time and space would be sweet so answers can be compared ...
15
votes
4answers
3k views
Copy a linked list
typedef struct Node
{
int data;
Node *next;
Node *other;
};
Node *pHead;
pHead is a singly linked list. The next field points to the next element in the list. The other field may point to any ...
15
votes
9answers
2k views
'Multipurpose' linked list implementation in pure C
( if you get easily bored reading long posts, you can focus on the bold parts )
Hello all! This is not exactly a technical question, since I know C kind of enough to do the things I need to (I mean, ...
15
votes
4answers
11k views
Relative performance of std::vector vs. std::list vs. std::slist?
For a simple linked list in which random access to list elements is not a requirement, are there any significant advantages (performance or otherwise) to using std::list instead of std::vector? If ...
14
votes
3answers
617 views
How are lists implemented in Haskell (GHC)?
I was just curious about some exact implementation details of lists in Haskell (GHC-specific answers are fine)--are they naive linked lists, or do they have any special optimizations? More ...
13
votes
5answers
358 views
Why is a LinkedList Generally Slower than a List?
I started using some LinkedList’s instead of Lists in some of my C# algorithms hoping to speed them up. However, I noticed that they just felt slower. Like any good developer, I figured that I should ...
12
votes
2answers
111 views
Sorting a linked list in Java
I have written a bubble sort algorithm to sort a linked list. I am a Java beginner and trying to learn data structures. I am confused why my second element is not sorted properly.
EDIT
class ...
12
votes
0answers
176 views
Coding site with test harness for basic data structures like linked list,graph,strings etc [closed]
Are there any coding sites with test harness for basic data structures and with basic problems like arrays,strings,linked list,graph adjacency list etc, so that I can brush up on basic codes like ...
12
votes
11answers
1k views
Using C++ is a Linked-List implementation without using pointers possible or not?
My question is very simple, can one using C++, implment a link-list data structure without using pointers (next nodes)? To further qualify my question, I'm mean can one create a Linked-List data ...
12
votes
2answers
560 views
Why are Stack<T> and Queue<T> implemented with an array?
I'm reading C# 4.0 in a Nutshell by the Albahari brothers and I came across this:
Stacks are implemented internally with an array that's resized as required, as with Queue and List. (pg 288, ...
12
votes
8answers
1k views
Finding the “Nth node from the end” of a linked list
This seems to be returning the correct answer, but I'm not sure if this is really the best way to go about things. It seems like I'm visiting the first n nodes too many times. Any suggestions? Note ...
11
votes
1answer
453 views
Rationale behind the container_of macro in linux/list.h
In the implementation of linux kernel lists in /include/linux/list.h, what is the rationale behind the first line (pasted below) of the container_of macro?
const typeof( ((type *)0)->member ) ...
11
votes
12answers
2k views
Idiomatic efficient Haskell append?
Anyone worth their salt in Haskell knows about lists, and the cons operator (:).
Cons is our friend. But sometimes I want to add to the end of a list instead.
xs `append` x = xs ++ [x]
This, ...
11
votes
7answers
2k views
Yield Return In Java
I've created a linked list in java using generics, and now I want to be able to iterate over all the elements in the list. In C# I would use yield return inside the linked list while going over the ...
11
votes
6answers
2k views
Merging two sorted lists
This is one of the programming questions asked during written test from Microsoft. I am giving the question and the answer that I came up with. Thing is my answer although looks comprehensive (at ...
11
votes
6answers
818 views
Lists in Haskell : data type or abstract data type?
From what I understand, the list type in Haskell is implemented internally using a linked list. However, the user of the language does not get to see the details of the implementation, nor does he ...
11
votes
6answers
2k views
Java lists — does LinkedList really perform so poorly vs ArrayList and TreeList?
Taken from Apache TreeList doc:
The following relative performance statistics are indicative of this class:
get add insert iterate remove
TreeList 3 5 1 2 ...
11
votes
6answers
9k views
MATLAB linked list
What are some possible ways to implement a linked list in MATLAB?
Note: I am asking this question for pedagogical value, not practical value. I realize that if you're actually rolling your own ...
11
votes
5answers
9k views
How to determine if a linked list has a cycle using only two memory locations
Does anyone know of an algorithm to find if a linked list loops on itself using only two variables to traverse the list. Say you have a linked list of objects, it doesn't matter what type of object. ...
11
votes
5answers
10k views
When to use a linked list over an array/array list?
I use a lot of lists and arrays but I have yet to come across a scenario in which the array list couldn't be used just as easily as, if not easier than, the linked list. I was hoping someone could ...
10
votes
1answer
212 views
Left vs Right linked list, Replace speed
There are two obvious ways to structure a linked list in Mathematica, "left":
{1, {2, {3, {4, {5, {6, {7, {}}}}}}}}
And "right":
{{{{{{{{}, 7}, 6}, 5}, 4}, 3}, 2}, 1}
These can be made with:
...
10
votes
4answers
239 views
More linked lists in C
Before I begin I want to make it clear that I don't want the the answer to my HOMEWORK problem, I would just like if someone could actually explain what exactly my instructor is asking for in this ...
10
votes
9answers
3k views
Linked list interview question
This question may be old, but I couldn't think of an answer.
Say, there are two lists of different lengths, merging at a point; how do we know where the merging point is?
Conditions:
We don't know ...
9
votes
4answers
1k views
How is Python's List Implemented?
Is it a linked list, an array? I searched around and only found people guessing. My C knowledge isn't good enough to look at the source code.
9
votes
3answers
171 views
How to store ordered items which often change position in DB
I need to be able to store a large list of ordered items in the DB. So far that's straight-forward:
ID Position OtherFields
1 45 ...
2 4736 ...
3 514 ...
...
In queries, ...
9
votes
4answers
2k views
Finding the intersecting node from two intersecting linked lists
Suppose there are two singly linked lists both of which intersect at some point and become a single linked list.
The head or start pointers of both the lists are known, but the intersecting node is ...
8
votes
3answers
156 views
Java Generics: Array containing generics [closed]
Possible Duplicate:
Java how to: Generic Array creation
Error generic array creation
I have been tasked with writing a Hash Table in Java, which must work with any data type. The rules ...
8
votes
5answers
171 views
Desperately seeking the answer to my pointer problem
I have been working on a college C assignment, and have been trying to make sense of a bug I seem to be having with my code. Basically, it seems like something is wrong with my pointers (and or memory ...
8
votes
3answers
272 views
tricky linked list problem
Given three lists: A, B and C of length n each. if any 3 three numbers (1 from each list), sum up to zero return true.I want to solve this with o(n)complexity.I have sorted the lists and I can think ...
8
votes
1answer
340 views
What is an “orthogonal linked list”?
I understand what a linked list is, but my question is what is an orthogonal linked list? I searched on the web but couldn't find any helpful information. I am studying liked list in C++, if there ...
8
votes
5answers
3k views
sorting a doubly linked list with merge sort
Hi
I have found this code in the internet and it was for arrays ,I want to change it for doubly linked list(instead of index we should use pointer) would you please help me that how can i change merge ...
8
votes
2answers
449 views
What's the right way to do mutable data structures (e.g., skip lists, splay trees) in F#?
What's a good way to implement mutable data structures in F#? The reason I’m asking is because I want to go back and implement the data structures I learned about in the algorithms class I took this ...
8
votes
7answers
3k views
TStringList, Dynamic Array or Linked List in Delphi?
I have a choice.
I have a number of already ordered strings that I need to store and access. It looks like I can choose between using:
A TStringList
A Dynamic Array of strings, and
A Linked List of ...
8
votes
5answers
756 views
What is the Definition of a Lisp Cons Cell?
What exactly is the definition of a Common Lisp Cons Cell? How is a Cons Cell different than a standard linked list item? After all, both the cons cell and the linked list item have a value and a ...
8
votes
14answers
2k views
Why is inserting in the middle of a linked list O(1)?
According to the Wikipedia article on linked lists, inserting in the middle of a linked list is considered O(1). I would think it would be O(n). Wouldn't you need to locate the node which could be ...
8
votes
17answers
4k views
What are real world examples of when Linked Lists should be used?
Another programmer was mentioning that they haven't found a use case for using a linked list data structure in any professional software in his career. I couldn't think of any good examples off the ...
8
votes
9answers
3k views
Where can I see the Sun Java source code?
I want to have a look at how Java implements LinkedList. Where should I go to look at the source code?
7
votes
6answers
563 views
Print a singly-linked list backwards, in constant space and linear time
I heard an interview question:
"Print a singly-linked list backwards,
in constant space and linear time."
My solution was to reverse the linkedlist in place and then print it like that. Is ...