Basically every program is an algorithm, thus every programmer knows at least a bit about algorithms.
I'll divide your question into two:
Must every programmer be familiar with well-known "advanced" algorithms?
Today - Not all kinds of programming require deep understanding of "advanced" Algorithms, today we are experiencing more and more good libraries, in which the algorithms and data-structures are hidden within, allowing the end-programmer to puzzle-like attach the pieces, thus an extensive part of the end-programmer job, is to understand how to attach those pieces, not necessarily to write a full-scale algorithm.
If the end-programmer is mostly wiring up pieces from libraries, knowing this is worth-while, but may not be obligated.
However a big part of a program may be the algorithm itself - such as in the field of DSP,3D etc'. in those fields you really should know "advanced" algorithms, if you want your program to succeed. that is, you'll want to know what is known so you can use it, on what to not spend time when you have a dead-line (polynomially solve NP problems) and how to approach a new problem.
Why should every programmer be familiar with the principles of algorithms?
Even if the end-programmer is mostly wiring up pieces from libraries, and there is less room for smart algorithms. a poor programmer may well damage the stability and speed of good libraries. For example the Big O notation, is important because where it may not be seen on some small tests, there is a difference between a program that runs in O(n^n) compared to a program that runs in O(n).
Also it is important to remember that the term 'algorithms' often goes hand to hand with the term Data Structures - such as the case in the book you've mentioned, and every programmer should be familiar with the very basic yet extremely useful concepts of organizing the program data, that is to know the concepts of arrays, linked lists, binary trees, etc'.
To conclude -
Principles of algorithms and basic data structures - a must.
Familiarity with well-known "advanced" algorithms - recommended to many, a must for some.