Actually, this article is posted about one year before, at here. Today, I happened to see this article, interesting. So, I found my old entry and post here. Also, I post all the comments at the end, it’s really valuable I think.
Recently(2004.08.06), a friend of mine discussed the Event handle issues in C# and […]
Archive for July, 2005
Interesting topic, right? One of my friends encounter this problem when he’s applying software engineer position in a company.
Suppose we have only stack available
Stack* stack_init();
void push(Stack*, int);
int pop(Stack*);
void stack_free();
Please implement the following interface of queue
Queue* queue_init();
void inq(Queue*, int);
[…]
