0
votes
2answers
35 views
Grouping related items in PHP
I have some rows in a database which represent line items in a sale. Each line item has five columns:
id : Primary key.
sale_id : The sale that this line-item is a part of (a foreign key to a Sales …
2
votes
7answers
1k views
Want to save binary tree to disk for “20 questions” game
In short, I'd like to learn/develop an elegant method to save a binary tree to disk (a general tree, not necessarily a BST). Here is the description of my problem:
I'm implementing a game of …
9
votes
15answers
5k views
Is this C++ structure initialization trick safe?
Instead of having to remember to initialize a simple 'C' structure, I might derive from it and zero it in the constructor like this:
struct MY_STRUCT
{
int n1;
int n2;
};
class CMyStruct : …
1
vote
2answers
79 views
Searching a number in a rotated sorted Array
Given a Sorted Array which can be rotated find an Element in it in minimum Time Complexity.
eg : Array contents can be [8, 1, 2, 3, 4, 5]. Assume you search 8 in it.
6
votes
5answers
293 views
Where can I learn how to combine algorithms and data structures ?
After reading an introductory book on algorithms and data structures I am now craving for examples on how to combine these for optimal efficiency.
For instance, you can combine hashmaps with specific …
1
vote
3answers
168 views
java: Is there an object like a “Set” that can contain only unique string values, but also contain a count on the number of occurrences of the string value?
In Java is there an object like a "Set" that can contain only unique string values, but also contain a count on the number of occurrences of the string value?
The idea is simple
With a data set …
1
vote
6answers
178 views
Data Structure Interview Question
I was asked the following Question:
How would you store the data given below(which data structure would u pick):
A-1-2-3-4-5-6
|
B-7-8-9-10-11
|
C-12-14-15-16-17
My ans:
Since this looks like a …
6
votes
4answers
170 views
Is there a Java Collection (or similar) that behaves like an auto-id SQL table?
Note that I'm not actually doing anything with a database here, so ORM tools are probably not what I'm looking for.
I want to have some containers that each hold a number of objects, with all objects …
0
votes
4answers
143 views
Choosing among alternatives in a Haskell algebraic datatype
When type X is defined as:
data X =
X { sVal :: String } |
I { iVal :: Int } |
B { bVal :: Bool }
and I want the Int inside an X value, if there is one, otherwise zero.
returnInt :: …
0
votes
0answers
6 views
Representing location data in Django Models
I'm having trouble deciding on how exactly to represent location data in a project I'm starting.
The data is essentially a floor plan, with things existing at points.
My first approach was to create …
1
vote
1answer
56 views
Clojure data structure traversal/searching.
I'd like to be able to do something like this:
(search data
list?
(fn [x] (and (list? x) (= 4 (first x))))
(fn [x] (and (set? x) (contains x 3))))
And have it recursively search a nested …
1
vote
6answers
256 views
Most optimal way to find the sum of 2 numbers represented as linked lists
Hello,
I was trying to write a program for the problem I mentioned above, the numbers (i.e the lists) can be of unequal length, I was not able to figure out a way to do this other than the most …
3
votes
3answers
100 views
RPG dialogue engine / structure
I've always been interested in the data structures involved in an RPG (Role-Playing Game). In particular, I'm curious about dialogue and events based actions.
For example: If I approach an NPC at …
1
vote
2answers
92 views
Optimizing binary tree inserts to O(1) with hash map for write heavy trees
First of all I assume I've missed something major when thinking about this, but I still wanted to post about it to see if I really didn't miss anything, on with it...
I have a pretty write heavy …
1
vote
3answers
63 views
What is the best way to organize a group of groups in Obj-c?
I have an unusual problem where I have a list of fruits (apple, orange, banana, grapes, etc etc). They can be organized into small groups for example:
Group 1: apple, green_apple, pineapple
Group 2: …
