2
votes
Queues in the Linux Kernel
You seem to confusing an abstraction (a fifo queue) with an implementation (a linked list).
They are not mutually exclusive - in fact queues are most commonly implemented as linked lists - there i …
2
votes
Terminology/naming convention for queue operations/APIs?
push/pop is plain wrong for a fifo as these are stack (first in last out) operations.
queue can refer to the object as well as an operation so is a bit overloaded and dequeue can cause conf …
2
votes
Is there a way to produce a binary diff on two byte arrays in c# .net?
Crikey! - that's all a bit complex, what's wrong with a run length encoding of the XOR of the two arrays - does the encoding and decoding in one pass and should be reasonably efficient in space as …
