What would be your recommendation about the most suitable programming language to learn Algorithms?<p>Actually tempted by Robert Sedgewick's C series.
What do you think?
python would let you concentrate on the code and not on other issues. It also has quick access to many data structures like sets and maps with shorthand syntax.<p>e.g. checking for set membership:
if 3 in {1,2,3,4,5}: