标准模板类(STL)(六),举例

三、举例说明      在前面介绍过程中,已有相应的例子了。现在在学习几个常用的例子。 1、普通指针处理和运用STL的区别 Node* currNode = head; while (currNode != NULL) {  cout << currNode->data << endl;  currNode = currNode->next; } ++++++++++++使用STL迭代器+++++
相关文章
相关标签/搜索