Lempel-Ziv Compression algorithms are easy divided in two main groups:
LZ77 and LZ78.
The bold difference between this two groups is that LZ77 do not need an
explicit dictionary
where LZ78 do need it.
The search for longest match require a lot of CPU time.
It is possible, however, by cost of amount of memory used
to speed-up the search for longest matches.
Each node have a list of possible continuation
symbols.
Continuation symbol have pointer to the next
node.
There is a list of nodes, sorted by creation
order.
The basic idea here is quit similar to one proposed for LZ77, however,
there is no need for "special mark", since here it is
impossible to use
uncoded symbols as part of the dictionary.