由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 如何取一个list的第i个element
相关主题
请教 C++ std::list iterator 对 template class pointer 的应用问题STL感觉实在太变态了
gprof和STL的问题c++ template question:
问一个有关C++里面list的问题。c++ interview: iterator 和 pointer区别?
[合集] 关于C++ STL的list的一个问题C++ vector 一边遍历一边删
C++11里list迭代器判空仍然知道具体的list对象吗?stl的一个问题
[合集] 如何得到一个指向STL元素的指针?std::list::iterator question
Java: use a HashSet to find the elements that are common in all listsinterview questions
什么时候需要调用STL container的destructor?STL iterator的疑问
相关话题的讨论汇总
话题: list话题: iterator话题: stl话题: char话题: element
进入Programming版参与讨论
1 (共1页)
d*****9
发帖数: 70
1
list is STL's list.
list mylist;
how to get the ith char from this list????
thanks!
P********e
发帖数: 41
2
Loop over the list
T*****9
发帖数: 2484
3
set iterator at the begin and use advace iterator

【在 d*****9 的大作中提到】
: list is STL's list.
: list mylist;
: how to get the ith char from this list????
: thanks!

d*****9
发帖数: 70
4
I am using a counter and an iterator, when coutner reach the node, return
the iterator, I think this method is very ugly, bu don't know any better
solution.

【在 P********e 的大作中提到】
: Loop over the list
T*****9
发帖数: 2484
5
Use
advance (iter, counter);
directly

【在 d*****9 的大作中提到】
: I am using a counter and an iterator, when coutner reach the node, return
: the iterator, I think this method is very ugly, bu don't know any better
: solution.

P********e
发帖数: 41
6
It's not ugly, now that you choose to use list as your data structure, it is
the only way to do.

【在 d*****9 的大作中提到】
: I am using a counter and an iterator, when coutner reach the node, return
: the iterator, I think this method is very ugly, bu don't know any better
: solution.

d*****9
发帖数: 70
7
I don't know what you mean..

【在 T*****9 的大作中提到】
: Use
: advance (iter, counter);
: directly

t****t
发帖数: 6806
8
advance() is a STL function, in
you should use this instead your own version (although they do the same
thing for list<>)

【在 d*****9 的大作中提到】
: I don't know what you mean..
d*****9
发帖数: 70
9
thanks!
1 (共1页)
进入Programming版参与讨论
相关主题
STL iterator的疑问C++11里list迭代器判空仍然知道具体的list对象吗?
[合集] 很中肯的批评 STL[合集] 如何得到一个指向STL元素的指针?
A C++ STL questionJava: use a HashSet to find the elements that are common in all lists
STL/vector引用成员变量。什么时候需要调用STL container的destructor?
请教 C++ std::list iterator 对 template class pointer 的应用问题STL感觉实在太变态了
gprof和STL的问题c++ template question:
问一个有关C++里面list的问题。c++ interview: iterator 和 pointer区别?
[合集] 关于C++ STL的list的一个问题C++ vector 一边遍历一边删
相关话题的讨论汇总
话题: list话题: iterator话题: stl话题: char话题: element