C++学习笔记 STL
beattwo
这个作者很懒,什么都没留下…
展开
-
STL-去除list中重复的元素
[code="c++"] // Test7.cpp : Defines the entry point for the console application. #include "stdafx.h" #include #include #include int _tmain(int argc, _TCHAR* argv[]) { std::list singleVal...原创 2010-06-09 14:49:56 · 927 阅读 · 0 评论 -
STL-去除vector中重复的元素
[code="c++"] // Test7.cpp : Defines the entry point for the console application. #include "stdafx.h" #include #include #include int _tmain(int argc, _TCHAR* argv[]) { std::vector singleV...原创 2010-06-09 14:56:18 · 577 阅读 · 0 评论 -
STL-容器间的复制list&vector
[code="c++"] #include #include #include #include int main() { //copy list to list std::list oldList; std::list newList; oldList.push_back("test1"); oldList.push_back("test2"); ...原创 2010-06-10 20:21:40 · 351 阅读 · 0 评论