Tagged Questions
A data structure is a way of organizing data in a fashion that allows particular properties of that data to be queried and/or updated efficiently.
777
votes
82answers
144k views
What are the lesser known but cool data structures? [closed]
There are some data structures around that are really cool but are unknown to most programmers. Which ones are they?
Everybody knows about linked lists, binary trees, and hashes, but what about Skip ...
170
votes
23answers
62k views
Graph visualization code in javascript? [closed]
Hi. I have a data structure that represents a directed graph, and I want to render that dynamically on an HTML page. Does anyone know of any javascript code that can do a reasonable job with graph ...
165
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 ...
154
votes
11answers
83k views
Why Dictionary is preferred over hashtable in C#?
In most of programming languages, we preferred using a dictionary over a hashtable .
What are the reasons behind it?
105
votes
5answers
4k views
How to implement a queue with three stacks?
I came across this question in an algorithms book (Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne).
Queue with three stacks. Implement a queue with three stacks so that each queue ...
79
votes
24answers
26k views
Does Java need tuples?
This question got me re-thinking about something that always bothered me:
Does Java need tuples?
Do you feel the lack of them in your day-to-day work? Do you think tuples would simplify otherwise ...
73
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 ...
65
votes
13answers
3k views
Most efficient way to store thousand telephone numbers
This is a google interview question:
There are around thousand phone numbers to be stored each having 10 digits. You can assume first 5 digits of each to be same across thousand numbers. You have to ...
61
votes
12answers
36k views
What is C# analog of C++ std::pair?
I am interested what is C# analog of C++ std::pair? I have found System.Web.UI.Pair class, but wanted something template based.
Thank you!
60
votes
15answers
4k views
Algorithms based on number base systems?
I've noticed recently that there are a great many algorithms out there based in part or in whole on clever uses of numbers in creative bases. For example:
Binomial heaps are based on binary ...
58
votes
11answers
40k views
.Net Data structures: ArrayList, List, HashTable, Dictionary, SortedList, SortedDictionary — Speed, memory, and when to use each?
.Net has a lot of complex data structures. Unfortunately, some of them are quite similar and I'm not always sure when to use one and when to use another. Most of my C# and VB books talk about them to ...
56
votes
6answers
52k views
Tree data structure in C#
I was looking for a tree or graph data structure in C# but I guess there isn't one provided. http://msdn.microsoft.com/en-us/library/ms379574.aspx explains a bit about why. Is there a convenient ...
52
votes
11answers
1k views
How to avoid “too many parameters” problem in API design?
I have this API function:
public ResultEnum DoSomeAction(string a, string b, DateTime c, OtherEnum d,
string e, string f, out Guid code)
I don't like it. Because parameter order becomes ...
49
votes
4answers
9k views
Has anyone actually implemented a Fibonacci-Heap efficiently?
Has anyone of you ever implemented a Fibonacci-Heap? I did so a few years back, but it was several orders of magnitude slower than using array-based BinHeaps.
Back then, I thought of it as a valuable ...
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)?
46
votes
13answers
32k views
Why doesn't java.util.Set have get(int index)?
I'm sure there's a good reason, but could someone please explain why the java.util.Set interface lacks get(int Index), or any similar get() method?
It seems that sets are great for putting things ...
45
votes
1answer
2k views
lenses, fclabels, data-accessor - which library for structure access and mutation is better
There are at least three popular libraries for accessing and manipulating fields of records. The ones I know of are: data-accessor, fclabels and lenses.
Personally I started with data-accessor and ...
45
votes
9answers
56k views
JavaScript Hashmap Equivalent
As made clear in update 3 on this answer, this notation:
var hash = {};
hash[X]
does not actually hash the object X; it actually just converts X to a string (via .toString() if it's an object, or ...
44
votes
9answers
6k views
Why should hash functions use a prime number modulus?
A long time ago, I bought a data structures book off the bargain table for $1.25. In it, the explanation for a hashing function said that it should ultimately mod by a prime number because of "the ...
42
votes
6answers
2k views
What is it about Fibonacci numbers?
Fibonacci numbers have become a popular introduction to recursion for Computer Science students and there's a strong argument that they persist within nature. For these reasons, many of us are ...
42
votes
20answers
3k views
Good algorithm and data structure for looking up words with missing letters?
so I need to write an efficient algorithm for looking up words with missing letters in a dictionary and I want the set of possible words.
For example, if I have th??e, I might get back these, those, ...
41
votes
10answers
4k views
How does one make a Zip bomb?
This question about zip bombs naturally led me to the Wikipedia page on the topic. The article mentions an example of a 45.1 kb zip file that decompresses to 1.3 exabytes.
What are the ...
39
votes
3answers
2k views
Data structure for loaded dice?
Suppose that I have an n-sided loaded die where each side k has some probability pk of coming up when I roll it. I'm curious if there is good algorithm for storing this information statically (i.e. ...
38
votes
2answers
927 views
How do you write data structures that are as efficient as possible in GHC?
So sometimes I need to write a data structure I can't find on Hackage, or what I find isn't tested or quality enough for me to trust, or it's just something I don't want to be a dependency. I am ...
38
votes
5answers
2k views
Scrabble tile checking
For tile checking in scrabble, you make four 5x5 grids of letters totalling 100 tiles. I would like to make one where all 40 horizontal and vertical words are valid. The set of available tiles ...
36
votes
14answers
2k views
Which Mathematics should I study to be a better programmer/developer? [closed]
Possible Duplicates:
How much mathematics and physics should a programmer know?
What are the core mathematical concepts a good developer should know?
I would like to study mathematics to be ...
35
votes
7answers
3k views
Given a 1TB data set on disk with around 1KB per data record, how can I find duplicates using 512MB RAM and infinite disk space?
There is 1TB data on a disk with around 1KB per data record. How to find duplicates using
512MB RAM and infinite disk space?
34
votes
10answers
3k views
Which data structure is this?
What is the name of the data structure, if one exists, that has the operations below?
You can insert an element and you are given a key.
You can retrieve an element by its key.
33
votes
5answers
23k views
How to implement a queue using two stacks?
Suppose we have two stacks and no other temporary variable.
Is to possible to "construct" a queue data structure using only the two stacks?
32
votes
15answers
1k views
How should I map string keys to values in Java in a memory-efficient way?
I'm looking for a way to store a string->int mapping. A HashMap is, of course, a most obvious solution, but as I'm memory constrained and need to store 2 million pairs, 7 characters long keys, I need ...
31
votes
6answers
8k views
How to Correctly Use Lists in R?
Brief background: Many (most?) modern programming languages in widespread use have at least a handful of ADTs [abstract data type] in common, in particular, string (a (sequence comprised of ...
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 ...
31
votes
7answers
10k views
Skip List vs. Binary Tree
I recently came across the data structure known as a Skip list. They seem to have very similar behavior to a binary search tree... my question is - why would you ever want to use a skip list over a ...
31
votes
24answers
26k views
Array Vs. Linked List
I apologize--this question may be a bit open-ended but I think there are probably definite, quantifiable answers to it so I'll post it anyway.
A person I know is trying to learn C++ and software ...
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
8answers
15k views
How do I make and use a Queue in Objective-C?
I want to use a queue data structure in my Objective-C program. In C++ I'd use the STL queue. What is the equivalent data structure in Objective-C? How do I push/pop items?
29
votes
9answers
2k views
Algorithms and data structures that are not mainstream? [closed]
There are a subset of algorithms and data structures that are very common, well-studied and very helpful. Examples of these are Topological sort, quicksort, depth-first search; on the other hand, ...
29
votes
8answers
14k views
Priority queue in .Net
I am looking for a .Net (preferably C#) implementation of a priority queue or heap.
Unless I am looking in the wrong place, there isn't one in the framework. Is anyone aware of a good one, or should ...
28
votes
1answer
811 views
What does it mean for a data structure to be “intrusive”?
I've seen the term intrusive used to describe data structures like lists and stacks, but what does it mean?
Can you give a code example of an intrusive data structure, and how it differs from a ...
28
votes
21answers
2k views
Data Structures… so how do I understand them?
So I am a Computer Science student and in about a week or so... I will be retaking a Data Structures course, using C++ for applying the theory. Yes, I did say "retaking". I took the course last Fall ...
28
votes
20answers
5k views
What are some examples of problems that are best solved with graphs? [closed]
After reading Stevey Yegge's Get That Job At Google article, I found this little quote interesting:
Whenever someone gives you a problem, think graphs. They are the most fundamental and flexible ...
28
votes
14answers
11k views
What is the best way to implement nested dictionaries in Python?
I have a data structure which essentially amounts to a nested dictionary. Let's say it looks like this:
{'new jersey': {'mercer county': {'plumbers': 3,
...
27
votes
12answers
806 views
Optimizing queries for the next and previous element
I am looking for the best way to retrieve the next and previous records of a record without running a full query. I have a fully implemented solution in place, and would like to know whether there are ...
26
votes
9answers
4k views
typedef struct vs struct definitions
I'm a beginner with C programming, but I was wondering what the difference was between the using typedef when defining a structure versus not using typedef. It seems to my like there's really no ...
26
votes
4answers
2k views
Repository pattern vs. “smart” business objects
I see two main "schools of thoughts" when it comes to creating larger-scale enterprise-wide apps on .NET (Winforms, WPF, ASP.NET).
Some folks use the "repository pattern" which uses a repository that ...
26
votes
17answers
4k views
Algorithm for detecting “clusters” of dots
I have a 2D area with "dots" distributed on this area. I now am trying to detect "clusters" of dots, that is, areas with a certain high density of dots.
Any thoughts on (or links to articles with ...
25
votes
6answers
1k views
Implement a queue in which push_rear(), pop_front() and get_min() are all constant time operations
I came across this question:
Implement a queue in which push_rear(), pop_front() and get_min() are all constant time operations.
I initially thought of using a min-heap data structure which has O(1) ...
25
votes
13answers
2k views
Algorithm to find top 10 search terms
I'm currently preparing for an interview, and it reminded me of a question I was once asked in a previous interview that went something like this:
"You have been asked to design some software to ...
24
votes
11answers
2k views
Hashing a Tree Structure
I've just come across a scenario in my project where it I need to compare different tree objects for equality with already known instances, and have considered that some sort of hashing algorithm that ...
24
votes
8answers
3k views
Why is there no Tree<T> class in .NET?
The base class library in .NET has some excellent data structures for collections (List, Queue, Stack, Dictionary), but oddly enough it does not contain any data structures for binary trees. This is a ...