C++
文章平均质量分 69
simplify2012
这个作者很懒,什么都没留下…
展开
-
[2, Medium, C++] Add Two Numbers
This is the 2nd problem of the Leetcode. It is a typical problem of the linked-list category.原创 2016-01-06 13:50:45 · 455 阅读 · 0 评论 -
[1, Medium, C++] Two Sum
The 1st problem of the leetcode.原创 2016-01-06 12:48:10 · 409 阅读 · 0 评论 -
23种常用设计模式(C++)
23种常用设计模式(C++)原创 2014-11-05 06:17:20 · 9369 阅读 · 3 评论 -
[Leetcode 116, Medium] Populating Next Right Pointers in Each Node
[Leetcode 116, Medium] Populating Next Right Pointers in Each Node原创 2015-07-22 22:01:46 · 373 阅读 · 0 评论 -
C|C++中的静态全局变量,静态局部变量,全局变量,局部变量的区别
全局变量(外部变量)的说明之前再冠以static 就构成了静态的全局变量。全局变量本身就是静态存储方式, 静态全局变量当然也是静态存储方式。这两者在存储方式上并无不同。这两者的区别虽在于非静态全局变量的作用域是整个源程序, 当一个源程序由多个源文件组成时,非静态的全局变量在各个源文件中都是有效的。 而静态全局变量则限制了其作用域, 即只在定义该变量的源文件内有效, 在同一源程序的其它源文件中不转载 2015-07-21 20:27:45 · 621 阅读 · 0 评论 -
How to determine the size of a class/struct in the C++?
How the size of a type is determined by the system?原创 2015-07-11 23:25:11 · 595 阅读 · 0 评论 -
堆和栈的区别(转过无数次的文章)
一、预备知识—程序的内存分配 一个由C/C++编译的程序占用的内存分为以下几个部分 1、栈区(stack)— 由编译器自动分配释放 ,存放函数的参数值,局部变量的值等。其 操作方式类似于数据结构中的栈。 2、堆区(heap) — 一般由程序员分配释放, 若程序员不释放,程序结束时可能由OS回 收 。注意它与数据结构中的堆是两转载 2015-07-21 20:16:53 · 280 阅读 · 0 评论 -
C++ outline and interview questions (1): Variable
C++ outline and interview questions (1): Variable原创 2015-07-25 01:05:12 · 1284 阅读 · 0 评论 -
C++ outline and interview questions (3): Class
C++ outline and interview questions (3): Class原创 2015-07-29 01:29:44 · 850 阅读 · 0 评论 -
C++ outline and interview questions (2): Pointers
C++ - outline and interview questions 2 - Pointers原创 2015-07-28 21:57:26 · 813 阅读 · 0 评论 -
动态库,静态库,动态链接,静态链接
静态库和动态库目前以lib后缀的库有两种,一种为静态链接库(Static Link Library),另一种为动态连接库(Dynamic Link Library DLL)的导入库(Import Libary)。在静态库情况下,函数和数据被编译进一个二进制文件(通常扩展名为*.lib),编译器在处理程序代码时将从静态库中恢复这些函数和数据并把它们和应用程序中的其他模块组合在一起转载 2015-07-14 01:56:31 · 474 阅读 · 0 评论 -
【C++】如何解决“pointer to incomplete class type is not allowed”。
原因:指向某个类型在某个成员函数被调用时,原创 2014-08-25 13:20:47 · 24530 阅读 · 1 评论 -
【C++/Boost Lib】如何初始化一个shared_ptr指针。
shared_ptr指针带有有参数的gouca原创 2014-08-22 23:12:32 · 5925 阅读 · 0 评论 -
[4, Hard, C++] Median of Two Sorted Arrays
Problem:There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).Analysis:原创 2016-02-13 08:22:53 · 501 阅读 · 0 评论