我在写set时这样写:
set<LL>::iterator it; it = s.begin()++;
这样写答案错了。 然后我改成:
set<LL>::iterator it; it = s.begin(), it++;
这样写就对了。 求巨佬解释一下这两种写法有什么区别。