Tagged Questions
3
votes
2answers
62 views
Reutilizing same c ADT for other types
So i'm having trouble figuring how to overcome this.
Take for example, i have a red black tree implementation that works with items:
typedef unsigned long int Key;
struct rbt_node{
Item item;
...
2
votes
5answers
337 views
problems with typedef on C
I writing some ADT on C:
I have two file date.c and date.h
inside date.c I have:
typedef struct Date_t {
int date;
char* month;
int year;
} Date;
inside date.h I have:
typedef Date pDate;
...
1
vote
4answers
165 views
I cannot understand the point of this simple code
I am doing this assignment, and there are some stuff (from start-up materials) that I cannot comprehend.
typedef enum
{
NORTH,
EAST,
SOUTH,
WEST,
NUM_POINTS
} Point;
typedef ...
1
vote
2answers
5k views
N-ary trees in C
Which would be a neat implemenation of a N-ary tree in C language?
Particulary, I want to implement an n-ary tree, not self-ballancing, with an unbound number of children in each node, in which each ...
0
votes
0answers
196 views
Doubly circular linked list how to implement? [closed]
I understand the concept of a doubly circular linked list... about how each node points back and forth and the first node's previous pointer points to the last node and the last node's next ptr points ...
0
votes
1answer
44 views
Combining two seperate ADTs into one
Hey guys I'm trying to get started on my CS assignment (second year C paper).
In this course we have created a Binary Search Tree ADT and also a Red Black Tree ADT. We have to combine them into one ...