数据结构
写文章的思考者
C++、chromium浏览器、Windows等技术开发
展开
-
用C#实现双向链表(使用泛型)
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DoubleLinkedList { class DoubleLinkedList { class Node { // 指向上一个元素指针 public Node Previous原创 2012-08-15 21:01:45 · 620 阅读 · 0 评论 -
stl中auto_ptr,unique_ptr,shared_ptr,weak_ptr四种智能指针使用总结
在一次面试过程中被问到了stl中的四种智能指针的用法 由于经验不足,我只知道auto_ptr和shared_ptr,然后还说了一个弱... 然后面试官就提示是weak_ptr,之后他又主动说出了unique_ptr 我也只对auto_ptr和shared_ptr做了一下使用场景。 现在回想起来,对这次面试还是很不满意,对自己的知识面也是很不满意,最近工作不是很忙,专门来总结一下这四种智原创 2016-08-19 14:25:03 · 6469 阅读 · 0 评论