[4 迭代器] 26. iterator优先于const_iterator、reverse_iterator以及const_reverse_iterator
STL标准容器提供了4种不同的迭代器:iterator、const_iterator、reverse_iterator和const_reverse_iterator。对容器类container来说,iterator类型相当于T*,而const_iterator相当于constT*。reverse_iterator与const_reverse_iterator同样对应于T*和constT*,对这两个