1
vote
Open-source radix/mtrie implementation in C?
There is a radix-tree implementation available under the GNU General Public License version 2, or (at your option) any later version:
…
0
votes
What’s the best way to model recurring events in a calendar application?
Store the events as repeating and dynamically display them, however allow the recurring event to contain a list of specific events that could override the default information on a specific day. …
0
votes
How would you improve this algorithm? (c string reversal)
String reversed in place, no temp variable.
static inline void
byteswap (char *a, char *b)
{
*a = *a^*b;
*b = *a^*b;
*a = *a^*b;
}
void
reverse (char *string)
{
char *end = …
0
votes
Reverse a singly linked list
Just for fun (although tail recursion optimization should stop it eating all the stack):
Node* reverse (Node *root, Node *end) {
Node *next = root->next;
root->next = end; …
0
votes
Reverse a singly linked list
How about the more readable:
Node *pop (Node **root)
{
Node *popped = *root;
if (*root) {
*root = (*root)->next;
}
return (popped);
}
void push (Node **r …
