c++
文章平均质量分 56
lingen1949
这个作者很懒,什么都没留下…
展开
-
C++ char类型
C++primer中: 和其他整型不同,char 有三种不同的类型:plain char 、unsigned char 和signed char。虽然 char 有三种不同的类型,但只有两种表示方式。可以使用unsigned char 或 signed char 表示 char 类型。使用哪种 char 表示方式由编译器而定。 整型 in原创 2012-08-20 22:18:22 · 799 阅读 · 0 评论 -
C++中的静态数据成员的作用与好处
静态成员如果有n个同类的对象,那么每一个对象都分别有自己的数据成员,不同对象的数据成员各自有值,互不相干。但是有时人们希望有某一个或几个数据成员为所有对象所共有。这样可以实现数据共享。在前面介绍过全局变量能够实现数据共享。如果在一个程序文件中有多个函数,在每一个函数中都可以改变全局变量的值,全局变量的值为各函数共享。但是用全局变量的安全性得不到保证,由于在各处都可以自由地修改全局变量的值,转载 2012-09-04 23:30:37 · 1275 阅读 · 0 评论 -
[leetcode]382. Linked List Random Node
382. Linked List Random NodeGiven a singly linked list, return a random node's value from the linked list. Each node must have the same probability of being chosen.Follow up:What if the li原创 2016-10-22 15:38:46 · 277 阅读 · 0 评论 -
406. Queue Reconstruction by Height
406. Queue Reconstruction by Height原创 2016-10-14 22:55:25 · 608 阅读 · 0 评论 -
[leetcode]404. Sum of Left Leaves
404. Sum of Left LeavesFind the sum of all left leaves in a given binary tree.Example: 3 / \ 9 20 / \ 15 7There are two left leaves in the binary tree, with values 9 and原创 2016-10-20 11:20:45 · 369 阅读 · 0 评论 -
[leetcode]421. Maximum XOR of Two Numbers in an Array
421. Maximum XOR of Two Numbers in an ArrayGiven a non-empty array of numbers, a0, a1, a2, … , an-1, where 0 ≤ ai < 231.Find the maximum result of ai XOR aj, where 0 ≤ i, j n.Cou原创 2016-10-20 16:08:19 · 2828 阅读 · 0 评论