Vulkan

2014年4月8日

Cracking The Coding Interview2.3

摘要: #include #include using namespace std;class linklist{private: class node { public: node(){} string data; node * next; }; int size;public: node *he... 阅读全文

posted @ 2014-04-08 22:09 Vulkan 阅读(132) 评论(0) 推荐(0) 编辑

Cracking The Coding Interview 2.2

摘要: #include #include using namespace std;class linklist{private: class node { public: node(){} string data; node * next; }; node *head; int size;publi... 阅读全文

posted @ 2014-04-08 21:24 Vulkan 阅读(112) 评论(0) 推荐(0) 编辑

Cracking The Coding Interview2.1 暂存

摘要: 暂存 阅读全文

posted @ 2014-04-08 21:23 Vulkan 阅读(91) 评论(0) 推荐(0) 编辑

Cracking The Coding Interview 2.0 单链表

摘要: #include #include using namespace std;class linklist{private: class node { public: node(){} string data; node * next; }; node *first; int size;publ... 阅读全文

posted @ 2014-04-08 11:10 Vulkan 阅读(64) 评论(0) 推荐(0) 编辑

导航