https://leetcode.com/problemset/algorithms/上面的题目,每天做几道题目,大体从准确率高至低做下去
编程语言为c语言,因为跑的最快…
237
Delete Node in a Linked List
47.8%
Easy
Write a function to delete a node (ex...
分类:
其他 时间:
2015-07-20 23:50:05
收藏:
0 评论:
0 赞:
0 阅读:
241
Decorator Pattern
Attach additional responsibilities to an object dynamically keeping the same interface. Decorators provide a flexible alternative
to subclassing for extending functionality....
分类:
其他 时间:
2015-07-20 23:48:55
收藏:
0 评论:
0 赞:
0 阅读:
427
用法:首先让指定的Activity实现Android.view.OnGestureListener,然后在你需要调用GestureDetector的View上,添加onTouchListener,之后setLongClickable(true)即可.
如:
customView.setOnTouchListner(xxxListener);
customView.setLongClickab...
分类:
移动平台 时间:
2015-07-20 23:48:45
收藏:
0 评论:
0 赞:
0 阅读:
322
Frogs' Neighborhood
Time Limit: 5000MS
Memory Limit: 10000K
Total Submissions: 8348
Accepted: 3538
Special Judge
Description
未名湖附近共有N个大小湖泊L1, L2, ..., Ln(其中包括未名湖)...
分类:
其他 时间:
2015-07-20 23:48:35
收藏:
0 评论:
0 赞:
0 阅读:
194
今天总结了一下Notification的使用,与大家分享一下。
MainActivity.java:本文参考:http://www.jb51.net/article/36567.htm,http://www.cnblogs.com/linjiqin/archive/2011/12/14/2288074.htmlpublic class MainActivity extends Activity {...
分类:
移动平台 时间:
2015-07-20 23:48:25
收藏:
0 评论:
0 赞:
0 阅读:
471
两个日期相差获取的是毫秒数
除1000是秒,再除60是分,再除60是小时.public class getMiao { /**
* 1000是秒
* 1000*60是分
* 1000*60*60是时
* 1000*60*60*24是天
*/
private static final long TIME = 40*1000; pu...
分类:
其他 时间:
2015-07-20 23:48:15
收藏:
0 评论:
0 赞:
0 阅读:
205
Lambda表达式
案例:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace lambda表达式
{
class Program
{
...
分类:
Windows开发 时间:
2015-07-20 23:48:06
收藏:
0 评论:
0 赞:
0 阅读:
346
题目:
Given a binary tree, determine if it is a valid binary search tree (BST).
Assume a BST is defined as follows:
The left subtree of a node contains only nodes with keys less than the node...
分类:
编程语言 时间:
2015-07-20 23:47:55
收藏:
0 评论:
0 赞:
0 阅读:
318
点击打开链接题目链接
Long Long Message
Time Limit: 4000MS
Memory Limit: 131072K
Total Submissions: 23327
Accepted: 9566
Case Time Limit: 1000MS
Description
The litt...
分类:
编程语言 时间:
2015-07-20 23:47:45
收藏:
0 评论:
0 赞:
0 阅读:
247
问题导读
1.ceilometer负责什么事情?
2.ceilometer 有哪些概念?
3.ceilometer 如何采集hardware?
ceilometer主要负责监控数据的采集,采集的项目包括虚拟机的性能数据,neutron-l3-router使用的网络带宽,glance&cinder&swift等租户使用信息,甚至是通过snmp采集物理机的信息,以及采集...
分类:
其他 时间:
2015-07-20 23:47:26
收藏:
0 评论:
0 赞:
0 阅读:
377
树的遍历的实现就是典型的递归思想。
/*
* description:树的遍历示例,递归
* 访问顺序:
* 前序: 当前节点 - 左子树 - 右子树
* 中序: 左子树 - 当前节点 - 右子树
* 后序: 左子树 - 右子树 - 当前节点
*
* write...
分类:
编程语言 时间:
2015-07-20 23:47:15
收藏:
0 评论:
0 赞:
0 阅读:
334
上篇讲到了Fragment的基础应用,现在给大家演示一下Fragment的生命周期是什么样子的。关于Fragemnt的基础应用,请见http://blog.csdn.net/jiapeng2b/article/details/46919859。一、首先,我们先看一下Fragment的生命周期
跟Activity生命周期的对比
Activity直接影响它所包含的fragment的生命周期,所以...
分类:
移动平台 时间:
2015-07-20 23:47:06
收藏:
0 评论:
0 赞:
0 阅读:
419
题目:
Two elements of a binary search tree (BST) are swapped by mistake.
Recover the tree without changing its structure.
Note:
A solution using O(n) space is
pretty straight forward. Could ...
分类:
编程语言 时间:
2015-07-20 23:47:05
收藏:
0 评论:
0 赞:
0 阅读:
218
指针与数组结合进行的运算...
分类:
编程语言 时间:
2015-07-20 23:45:55
收藏:
0 评论:
0 赞:
0 阅读:
435
使用spingmvc,在JS里面通过ajax发送请求,并返回json格式的数据,从数据库拿出来是正确的中文格式,展示在页面上就是错误的 ,研究了一下,有几种解决办法。
方法一:
在@RequestMapping里面加入produces = "text/html;charset=UTF-8"
Java代码
@RequestMapping(value = "...
分类:
编程语言 时间:
2015-07-20 23:45:46
收藏:
0 评论:
0 赞:
0 阅读:
512
java中的compareto方法,返回参与比较的前后两个字符串的asc码的差值,看下面一组代码
String a="a",b="b";
System.out.println(a.compareto.b);
则输出-1;
若a="a",b="a"则输出0;
若a="b",b="a"则输出1;
单个字符这样比较,若字符串比较长呢??
若a="ab"...
分类:
编程语言 时间:
2015-07-20 23:45:36
收藏:
0 评论:
0 赞:
0 阅读:
793
这个问题是StackOverFlow上面一个热门的问题What is Context in Android?
整理这篇文章的目的是Context确实是一个很抽象的东西,我们在项目中随手都会用到它,可是很多人根本不理解它到底是干什么的,这篇文章还会添加Context in Andorid – INSIGHT的翻译,绝对让读者理解Context的意义。...
分类:
移动平台 时间:
2015-07-20 23:45:25
收藏:
0 评论:
0 赞:
0 阅读:
414
今天在项目中遇到一个棘手的问题,在上传附件的时候,window弹窗,第一次的时候是正常的,win.hide() 后,第二次fieldLabel值会重复显示,如下图:
因为window窗口中只有“附件”重复了,“备注”字段没有重复,所以怀疑是因为“附件”的写法有问题
“附件”字段对应的代码如下,用的 inpuType:'file'
name : "u...
分类:
Windows开发 时间:
2015-07-20 23:45:15
收藏:
0 评论:
0 赞:
0 阅读:
418
题目请戳这里
题意:给出x1,x2,x3,x4,x5,x6,x7,x8与某值m进行异或运算后的结果,再给出x1~x8之和与m进行异或运算后的结果sum,求m.
思路:
根据位运算特性来做,由于m最大为32位,我们可以从最低位依次来推理得到,用x>>i&1来取右数第i-1位的值。
假设二进制右起第一位是1,算出所有xi的右起第一位二进制结果,累加得到tmp,比较tmp与sum的最右位,符合则...
分类:
其他 时间:
2015-07-20 23:45:05
收藏:
0 评论:
0 赞:
0 阅读:
281
题目描述首先定义"special number":
如果对于一个数字B,存在一个数字A(0<A<=B),并同时满足 B%A=0 和 gcd(A,B) != 1 ,那么我们就说A是B的"special number"。
再定义一个函数f(x)表示x的"special number"的数量。并且如果f(x)%2=1时,我们就称x为"real number"。
现在给你两个数字x和...
分类:
其他 时间:
2015-07-20 23:44:55
收藏:
0 评论:
0 赞:
0 阅读:
266