Tagged Questions

1
vote
7answers
89 views

Do all Hash-based datastructures in java use the ‘bucket’ concept?

The hash structures I am aware of - HashTable, HashSet & HashMap. Do they all use the bucket structure - ie when two hashcodes are similar exactly the same one element does not overwrite the …
1
vote
3answers
95 views

Linked List Ocaml

How would i create a linked list to hold my data in Ocaml? Im trying to make a singly linked list, however im having trouble with the syntax. I just want to make a module to simply get the 'a from the …
1
vote
2answers
162 views

C++ Data Structure for storing 3 dimensions of floats.

I've implemented a 3D strange attractor explorer which gives float XYZ outputs in the range 0-100, I now want to implement a colouring function for it based upon the displacement between two …
2
votes
9answers
154 views

Java large datastructure for storing a matrix

Hi folks, I need to store a 2d matrix containing zip codes and the distance in km between each one of them. My client has an application that calculates the distances which are then stored in an …
-1
votes
2answers
82 views

record duplication in c++

hey i want to know if anyone can tell me how to delete duplicate records or avoid duplication in the first place.... the problem is that whenever i edit a record, a duplicate record is created. can …
0
votes
2answers
73 views

File backed Trie (or Prefix Tree) implementation

I have to store lot of strings in c++ map to keep unique strings and when ever duplicate string occurs I just need to increment the counter (pair.second). I've used c++ map and it well fits to this …
1
vote
3answers
84 views

How CSS and DOM is implemented in the browser?

This is a pretty academic question. I'm wondering how the browser is implemented as in what data structure or algorithm is used to map a CSS selector to a particular DOM element. Is it accomplished …
1
vote
4answers
60 views

.NET - What is the best/correct way to iterator through a List and remove misc. members?

In C++ using std::list, this is a simple matter of erasing what an iterator is pointing to (the erase statement returns the next valid member of the list). What's the best way to iterator through a …
2
votes
3answers
61 views

.NET - multi-threaded iteration over a single List (Of T) - What do I need to watch out for?

I'm using VB.NET. I want to build a large List (Of MyClassOrStructure) that becomes static after its initial population. I'm going to have multiple threads that need to iterate through this list to …
2
votes
9answers
512 views

Linked list interview question

This may be the old, but I couldn't think of an answer. Say, there are two lists of different lengths merge at one point; how do we know where the merging point is? We don't know the length and we …
1
vote
3answers
149 views

Client Access to SQL Server over the Internet

Does anyone have any opinions over the best ways to connect a client to SQL Server to get data. So lets say I have a C# DataGridView in a Winform not on the internal network and I need to load it …
0
votes
0answers
23 views

access data from another content element in templavoila data structure

I defined a page content element which has a background picture. It's a simple mapping on an attribtue with a wrap. Everything is working fine and the typoscript part of the data structure looks like …
0
votes
6answers
212 views

Is there any practical usage of Doubly Linked List, Queues and Stacks?

I've been coding for quite sometime now. And my work pertains to solving real-world business scenarios. However, I have not really come across any practical usage of some of the data structures like …
0
votes
5answers
210 views

Generic Key/Value pair collection in that preserves insertion order?

I'm looking for something like a Dictionary<K,V> however with a guarantee that it preserves insertion order. Since Dictionary is a hashtable, I do not think it does. Is there a generic …