2
votes
7answers
101 views
How to implement connected rooms?
This may be a duplicate question as I don't know to phrase the search query. I'm creating a Zork-like text based game in Java where the character moves to different rooms which are …
0
votes
2answers
61 views
Templates and nested classes/structures
I have a simple container :
template <class nodeType> list {
public:
struct node {
nodeType info;
node* next;
};
//...
};
…
0
votes
5answers
57 views
Create a sorted array out of 2 arrays
There are 2 arrays given for ex.
A = [20,4,21,6,3]
B = [748,32,48,92,23......]
assuming B is very large and can hold all the elements of array A.
Find the way in which array B is …
0
votes
5answers
45 views
Building Interpreter Of a Document Format
I'm going to start the development of my own document format(like PDF, XPS, DOC, RTF...), but I want to know where I can read some tutorials, how-to's...? I don't want code, this i …
5
votes
1answer
214 views
Spaghetti stack in C
Does anybody know where I can find an example of a Spaghetti stack written in C?
1
vote
4answers
42 views
What Is The Structure Of a XPS File
As I think, XPS files are like PDF files, but what is the structure od a XPS file? It's like PDF files?
0
votes
4answers
68 views
What type of struct/container would you use in this instance?
I am trying to figure out what type of structure or container I should use for a quick project. I need to have an unknown number of sets that will be entered from the GUI (each on …
6
votes
8answers
166 views
C++ Data Member Alignment and Array Packing
During a code review I've come across some code that defines a simple structure as follows:
class foo {
unsigned char a;
unsigned char b;
unsigned char c;
}
Elsewhere, …
2
votes
9answers
204 views
Delphi data structures
I maybe need to do a project in Delphi and are a beginner in that field. Currently, I am searching the net for ressources and get confused because there are so few resource sites.
…
4
votes
9answers
168 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 the …
2
votes
3answers
62 views
Data-structure that stores unique elements but answers queries for another ordering in C++
Hi,
is there a data structure, which stores its elements uniquely (for a given compare-Functor) but answers queries for the highest element in that data structure with respect to …
4
votes
4answers
129 views
How can I restrict the children of nodes in a tree structure.
I'm creating a tree structure that is based on an AbstractNode class. The AbstractNode class has a generic collection property that contain its child nodes. See the code example be …
2
votes
4answers
25 views
Does PHP copy variables when retrieving from shared memory?
If I run an shm_get_var(), will it return a "reference", keeping the data in shared memory?
I'm wanting to keep an array about 50MB in size in shared memory so that it can be used …
1
vote
1answer
44 views
When converting to a red-black tree, is there any reason to choose one form over another?
I have a library of linked list/binary tree methods for use when standard containers don't fit - e.g. when there are different types of nodes, or when I need to convert from binary …
0
votes
4answers
86 views
Link list algorithm to find pairs adding up to 10
Can you suggest an algorithm that find all pairs of nodes in a link list that add up to 10.
I came up with the following.
Algorithm: Compare each node, starting with the second …
