摘要: #include #include #include #include #define NULL 0 struct spcb { char name; char state; char why; int dd }; typedef struct spcb pc... 阅读全文
posted @ 2015-01-10 17:20 SunkingYang 阅读(181) 评论(1) 推荐(0) 编辑
摘要: 文章来源:http://blog.csdn.net/luoweifu/article/details/42472303编程思想之迭代器什么是迭代器?迭代器(Iterator)是按照一定的顺序对一个或多个容器中的元素从前往遍历的一种机制,比如for循环就是一种最简单的迭代器,对... 阅读全文
posted @ 2015-01-10 15:51 SunkingYang 阅读(237) 评论(0) 推荐(0) 编辑