略坑啊,啃文档啃得要吐了,pythonanywhere上又不好看问题出在哪又跑到本地各种测试才知道原来要授权,又跑去N久之前弄的测试账号,总之各种坑。。。不过总算是弄清楚怎么实现的了...
分类:
微信 时间:
2015-07-20 23:50:37
阅读次数:
689
二叉树的顺序存储
完全二叉树的存储可以按照从上到下,从左到右的顺序依次存储在一维数组中。完全二叉树的顺序存储如图所示:
如果按照从上到下,从左到右的顺序把非完全二叉树也同样的编号,将结点依次存放在一维数组中,为了能够正确反映二叉树中结点之间的逻辑关系,需要在一维数组中将二叉树中不存在的结点位置空出。
顺序存储对于完全二叉树来说是...
分类:
其他好文 时间:
2015-07-20 23:53:19
阅读次数:
383
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:53:13
阅读次数:
293
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:49:40
阅读次数:
188
用法:首先让指定的Activity实现Android.view.OnGestureListener,然后在你需要调用GestureDetector的View上,添加onTouchListener,之后setLongClickable(true)即可.
如:
customView.setOnTouchListner(xxxListener);
customView.setLongClickab...
分类:
移动开发 时间:
2015-07-20 23:50:48
阅读次数:
301
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:58
阅读次数:
154
今天总结了一下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:49:47
阅读次数:
173
两个日期相差获取的是毫秒数
除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:51:12
阅读次数:
153
Lambda表达式
案例:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace lambda表达式
{
class Program
{
...
题目:
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:48:33
阅读次数:
209
点击打开链接题目链接
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:49:22
阅读次数:
252
问题导读
1.ceilometer负责什么事情?
2.ceilometer 有哪些概念?
3.ceilometer 如何采集hardware?
ceilometer主要负责监控数据的采集,采集的项目包括虚拟机的性能数据,neutron-l3-router使用的网络带宽,glance&cinder&swift等租户使用信息,甚至是通过snmp采集物理机的信息,以及采集...
分类:
其他好文 时间:
2015-07-20 23:49:05
阅读次数:
286
树的遍历的实现就是典型的递归思想。
/*
* description:树的遍历示例,递归
* 访问顺序:
* 前序: 当前节点 - 左子树 - 右子树
* 中序: 左子树 - 当前节点 - 右子树
* 后序: 左子树 - 右子树 - 当前节点
*
* write...
分类:
编程语言 时间:
2015-07-20 23:47:22
阅读次数:
240
上篇讲到了Fragment的基础应用,现在给大家演示一下Fragment的生命周期是什么样子的。关于Fragemnt的基础应用,请见http://blog.csdn.net/jiapeng2b/article/details/46919859。一、首先,我们先看一下Fragment的生命周期
跟Activity生命周期的对比
Activity直接影响它所包含的fragment的生命周期,所以...
分类:
移动开发 时间:
2015-07-20 23:48:55
阅读次数:
174
题目:
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:29
阅读次数:
169