0
votes
6answers
87 views
Binary Tree Nodes - Which Way?
For an assignment we were given in Data Structures, we had to create a test class to determine whether the code we were given correctly traversed the binary trees in our test class …
0
votes
2answers
21 views
Rendering different repeating data
What is the best method to display repeating data with slightly different controls or sub data? For example displaying an expanded list of questions and answers. Some questions w …
2
votes
6answers
244 views
Why do I lately have to be a master of big-O, sorting, searching, trees, graphs, large scale efficient data processing algorithms? [closed]
I haven't interviewed for about a decade. Back when I got the job it was mostly about how well I knew a programming language, where my experience was, what I am good at/bad at, som …
5
votes
6answers
99 views
Alarm history stack or queue?
I'm trying to develop an alarm history structure to be stored in non-volatile flash memory. Flash memory has a limited number of write cycles so I need a way to add records to the …
1
vote
5answers
172 views
How to implement a double linked list with only one pointer?
How to implement a double linked list with only one pointer?
It takes O(1) time to find the prev and next Node.
struct Node
{
int val;
Node* p;
};
0
votes
2answers
37 views
passing array of structs from c# to regular dll
Hi there
I have a regular dll with the followign fucntion exported.
extern "C" __declspec(dllexport) int FindNearestStuff(double _latitude, double _longitude , LocationStruct * lo …
2
votes
3answers
174 views
Efficient queue in Haskell.
How can I efficiently implement a list data structure where I can have 2 views to the head and end of the list, that always point to a head a tail of a list without expensive calls …
0
votes
4answers
86 views
Sort an array of structures in .NET
This is one of those times when only the hive mind can help - no amount of Google-fu can!
I have an array of structures:
Structure stCar
Dim Name As String
Dim MPH As In …
-2
votes
2answers
72 views
node values for a doubly linked list [closed]
i want to be sure about my Solutions to this question here:
// i have put the graph in a picture file.
The Q:
Use the following doubly linked list. Give the node value for the n …
-1
votes
2answers
44 views
What data structures can I use to represent a strongly-typed 2D matrix of data in .Net?
I'm trying to represent a scoreboard for a competition and am struggling with the best data structures to use.
I have a list of Player objects, a list of Round objects, and for ea …
0
votes
5answers
104 views
A collection that represents a concatenation of two collections in Java
Is there a class that represents the concatenation of a collection with another collection? This class should be a Collection in itself, and should delegate all methods to the unde …
0
votes
2answers
76 views
What’s A QT Or Open Source C++ Template For Ordinal Sorting
Hi,
I am looking for a special template class, hopefully either a QT template or a self-contained open source library. This template class is intended to act as a container for a …
1
vote
4answers
106 views
What is the proper syntax for storing an array into a Perl hash?
I'm creating a new object like this:
TestObject->new(@array1, @array2)
My new method looks like this:
sub new {
my $class = shift;
my $self = {};
my $self->{Array1 …
0
votes
1answer
38 views
Data model for storing categories (multiple parent nodes)
I've the following category structure:
- Transport (10)
- Cars (5)
- Audi (2)
- BMW (3)
- ...
- Spare Parts (5)
- Audi (5)
- Audi g …
0
votes
4answers
50 views
handling data structures (hashes etc) gracefully in ruby
I recently did a class assignment where I made a really hacky data structure. I ended up using nested hashes, which seems like a good idea, but is really hard to iterate through an …
