摘要: 1 #include //双向循环链表 2 #include 3 #include 4 using namespace std; 5 int main() 6 { 7 list L; 8 L.push_back(2); 9 L.push_back(1);10 L.push_back(5);11 //尾部元素扩张12 L.push_front(8);13 //头部元素扩张14 list::iterator it;15 it=L.begin();16 L.insert(++it,2);//中间插入;17 for(it=L.begin();it!=L... 阅读全文
posted @ 2013-02-11 12:50 在河之博 阅读(1175) 评论(0) 推荐(2) 编辑