码迷,mamicode.com
首页 > 2015年07月23日 > 全部分享
Power of Two
Given an integer, write a function to determine if it is a power of two.1 bool isPowerOfTwo(int n) {2 if(n<=0)3 return false;4 if(n&(n-1...
分类:其他好文   时间:2015-07-23 13:44:20    阅读次数:97
Basic Calculator II
Implement a basic calculator to evaluate a simple expression string.The expression string contains onlynon-negativeintegers,+,-,*,/operators and empty...
分类:其他好文   时间:2015-07-23 13:43:59    阅读次数:86
COJ 0986 WZJ的数据结构(负十四) 区间动态k大
题解:哈哈哈我过了!!!主席树+树状数组写起来还真是hentai啊。。。在这里必须分享我的一个沙茶错!!!看这段代码:void get(int x,int d){ if(!d)for(lt[ltot=1]=root[x];x;x-=x&-x)if(c[x])lt[++ltot]=c[x]; ...
分类:其他好文   时间:2015-07-23 13:43:42    阅读次数:125
javascript如何删除数组中指定的元素
javascript如何删除数组中指定的元素:本章节将通过实例简单介绍一下如何删除数组中的元素,希望给需要的朋友带来帮助。删除数组元素的方式有多种,下面简单介绍一下常用的几种方式:一.使用delete进行删除:代码实例如下:var myArray=new Array()myArray[0]="蚂蚁部...
分类:编程语言   时间:2015-07-23 13:43:17    阅读次数:135
Codeforces Round #313 (Div. 1)
官方英文题解:http://codeforces.com/blog/entry/19237Problem A:题目大意:给出内角和均为120°的六边形的六条边长(均为正整数),求最多能划分成多少个边长为1的正三角形。题解:把六边形补全变成一个正三角形,然后减去三个角的正三角形即可。Problem B...
分类:其他好文   时间:2015-07-23 13:41:20    阅读次数:108
ListView中convertView和ViewHolder的工作原理
LsitView和Adapter参考:http://www.cnblogs.com/xiaowenji/archive/2010/12/08/1900579.html工作原理:1.ListView针对List中每个item,要求adapter给我一个视图(getView)2.一个新的视图被返回并显示...
分类:其他好文   时间:2015-07-23 13:43:38    阅读次数:123
background-color属性有没有继承性
background-color属性有没有继承性:因为对象的背景默认是透明的,所以如果父对象设置了背景颜色之后,子对象也呈现为父对象的背景颜色,好像子对象继承了父对象的背景颜色,其实这是一种视觉错误。下面通过一个实例来说明一下background-color不具有继承性。实例代码:蚂蚁部落 ...
分类:其他好文   时间:2015-07-23 13:41:59    阅读次数:347
数据库主键设计之思考(转)
在我们的数据库设计中,不可逃避的就是数据库表的主键,可能有很多朋友没有深入思考过,主键的设计对整个数据库的设计影响很大,因此我们不得不要重视起来。主键的必要性:有些朋友可能不提倡数据库表必须要主键,但在我的思考中,觉得每个表都应该具有主键,不管是单主键还是双主键,主键的存在就代表着表结构的完整性, ...
分类:数据库   时间:2015-07-23 13:43:45    阅读次数:168
MySQL先进的技术-存储引擎
MySQL功能被分成两部分,主要有成品的外部client连接和可行性研究SQL函数语句,内侧部分被称为存储引擎,它负责接收外部操作指令数据,实际数据是完整的,文件输入和输出操作的工作 版权声明:本文博客原创文章,博客,未经同意,不得转载...
分类:数据库   时间:2015-07-23 13:42:45    阅读次数:117
Rectangle Area
Find the total area covered by tworectilinearrectangles in a2Dplane.Each rectangle is defined by its bottom left corner and top right corner as shown ...
分类:其他好文   时间:2015-07-23 13:41:45    阅读次数:78
Maximal Square
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area.For example, given the following matr...
分类:其他好文   时间:2015-07-23 13:40:49    阅读次数:95
Implement Stack using Queues
Implement the following operations of a stack using queues.push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top()...
分类:其他好文   时间:2015-07-23 13:42:34    阅读次数:106
Majority Element II
Given an integer array of sizen, find all elements that appear more than? n/3 ?times. The algorithm should run in linear time and in O(1) space.Hint:H...
分类:其他好文   时间:2015-07-23 13:41:41    阅读次数:103
Invert Binary Tree
Invert a binary tree. 4 / \ 2 7 / \ / \1 3 6 9to 4 / \ 7 2 / \ / \9 6 3 1Trivia:This problem was inspired bythis...
分类:其他好文   时间:2015-07-23 13:41:09    阅读次数:81
Foundation框架 学习笔记
1.数组OC数组不能存放nil值OC数组只能存放OC对象、不能存放非OC对象类型,比如int、struct、enum等======================================2.集合1.NSArray\NSMutableArray* 有序* 快速创建(不可变):@[obj1, o...
分类:其他好文   时间:2015-07-23 13:40:41    阅读次数:87
String与StringBuffer简解
StringString的一个关键概念是一个String对象想创建后,就永远不能改变它。在java内String就是对象,像这样 String s=new String();赋值s="aaa";就可以创建一个心得String对象实例.一旦为String赋值那该值将永不改变.虽然该值不可变。但其引用变...
分类:其他好文   时间:2015-07-23 13:40:20    阅读次数:114
CGBitmapContextCreate函数参数详解
CGBitmapContextCreate函数参数详解函数原型:CGContextRef CGBitmapContextCreate ( void *data, size_t width, size_t height, size_t bitsPerComponent, size_t bytesPer...
分类:其他好文   时间:2015-07-23 13:39:20    阅读次数:118
2135条   上一页 1 ... 82 83 84 85 86 87 88 ... 126 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!