Tagged Questions

86
votes
29answers
4k views

What are the lesser known but cool data structures ?

There a some data structures around that are really cool but are unknown to most programmers. Which are they? Everybody knows linked lists, binary trees, and hashes, but what about Skip lists, Bloom …
27
votes
4answers
2k 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 …
25
votes
11answers
1k 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 …
21
votes
9answers
887 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, …
17
votes
12answers
1k 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, …
17
votes
9answers
10k 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 …
16
votes
9answers
776 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 …
15
votes
8answers
1k views

How would you represent a Rubik’s Cube in code?

If you were developing software to solve a Rubik's Cube, how would you represent the cube?
15
votes
16answers
1k 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 …
15
votes
9answers
5k 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 …
14
votes
13answers
2k views

How to code a simple versioning system ?

I want to do a simple versioning system but i don't have ideas on how to structure my datas, and my code. Here is a short example: User logs in User has two options when uploading a file: Submit a …
14
votes
4answers
701 views

Disk-backed STL container classes?

I enjoy developing algorithms using the STL, however, I have this recurring problem where my data sets are too large for the heap. I have been searching for drop-in replacements for STL containers …
13
votes
15answers
844 views

Where can I learn more about datastructure tricky questions?

I am relatively new to programming (around 1 year programming C#-winforms). Also, I come from a non CS background (no formal degree) Recently, while being interviewed for a job, I was asked about …
12
votes
4answers
325 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 …
12
votes
16answers
1k views

What are some examples of problems that are best solved with graphs?

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 …

1 2 3 4 5 66 next
15 30 50 per page