发布时间:2015-04-14 16:57:00
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)Output: 7 -> 0 -> 8需要注意的是进位.........【阅读全文】
发布时间:2013-11-21 16:24:00
最近老是被问到这些东西,感觉自己能够说出一些但是老是说不全,所以索性总结一下:1,malloc与free是C++/C语言的标准库函数,new/delete是C++的运算符。它们都可用于申请动态内存和释放内存。2,对于非内部数据类型的对象而言,光用maloc/free无法满足动态对象的要求。对象在创建的同时要自动执行构造函数,对象在消亡.........【阅读全文】