分类:
其他好文 时间:
2014-09-13 20:01:45
阅读次数:
121
Given a binary tree, return theinordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,3,2].Note...
分类:
其他好文 时间:
2014-09-13 20:01:35
阅读次数:
185
public class Solution { public boolean isPalindrome(int x) { if (x= 10 ) highNum *= 10; while (highNum > lowNum) { ...
分类:
其他好文 时间:
2014-09-13 20:01:25
阅读次数:
171
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:
其他好文 时间:
2014-09-13 20:01:15
阅读次数:
205
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:
其他好文 时间:
2014-09-13 20:01:05
阅读次数:
176
Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally identical an...
分类:
其他好文 时间:
2014-09-13 20:00:55
阅读次数:
146
?其实吧,每期课程最有价值的东西免费讲给大家听了啊。从流程图到设计到实现方式,有哪些功能点,有什么可以扩展的。这些统统都说了,为什么非得要看到代码了才觉得是干货。若是真聪明,Stay说了方案,侬就能自己做出来了伐。
分类:
其他好文 时间:
2014-09-13 20:00:45
阅读次数:
257
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 ...
分类:
其他好文 时间:
2014-09-13 20:00:35
阅读次数:
207
Given an array of integers, every element appearstwiceexcept for one. Find that single one.Note:Your algorithm should have a linear runtime complexity...
分类:
其他好文 时间:
2014-09-13 20:00:25
阅读次数:
195
在程序员的眼中,文件不应当仅仅是一部电影、一首歌曲、一个pdf文件,它应该被视为一个文件夹,而我们所熟知的文件,应当是它的特例。在web开发中,文件的上传和下载是文件变成的一个实际应用。延续crud操作,通过具体的crud操作实现文件编程的细节复习。一、文件读取1.fopen方法fopen方法用于打...
分类:
Web程序 时间:
2014-09-13 20:00:15
阅读次数:
310
一:首先在Tomcat下的conf/context.xml文件里的contenx标签里配置数据源:name:指定Resource的JNDI名字auth:指定管理Resource的Manager,它有两个可选值:Container、ApplicationContainer是有容器创建和管理 Ap...
分类:
数据库 时间:
2014-09-13 19:59:55
阅读次数:
236
当点击notification时,实现otherAc...
分类:
移动开发 时间:
2014-09-13 19:59:45
阅读次数:
241
IE11点击后无反应,应该如何解决呢?我的机器出现上述情况后,采用下面的方法解决了问题:第一步,进入Windows 7的运行,打开Regedit,即注册表编辑器。依次找到 >>HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main 右键...
把问题简单化!不考虑花色,就看4个人,4张A的分法就可以了,因为所有牌都是等概率的,因此可以不考虑其他牌,只考虑A。假设所有A都是一样的:一个人拿4张A的:4种(每个人都是一种可能性)或者C(4,1)一个人三张,其他人一张:3*4=12种(C(4,1)*C(3,1),表示存在顺序,即3100和130...
分类:
其他好文 时间:
2014-09-13 19:59:15
阅读次数:
965
作为一名Android开发人员,我们都知道一个View从无到有,会经历3个阶段:1. measure/测量阶段,也就是确定某个view大小的过程;2. layout/布局阶段,也就是确定其左上右下坐标的过程;3. draw/绘制阶段,也就是按照前面2步计算的结果,将view绘制在屏幕相应的位置上.....
分类:
移动开发 时间:
2014-09-13 19:59:05
阅读次数:
353
coreAnimation简介 Core Animation是一组非常强大的动画处理API,使用它能做出非常炫丽的动画效果,而且往往是事半功倍!Core Animation是所有动画对象的父类,负责控制动画的持续时间和速度,是个抽象类,不能直接使用,应该使用它具体的子类 使用它需要先添加...
分类:
移动开发 时间:
2014-09-13 19:58:55
阅读次数:
279
1.略2.#import int main(int argc, const char * argv[]){ @autoreleasepool { // insert code here... NSLog(@"In Obiective-c, lowerc...
分类:
其他好文 时间:
2014-09-13 19:58:45
阅读次数:
318