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 and the nodes have the same value.简而言之,判断两棵二叉树是否相等,这里...
分类:
其他好文 时间:
2015-04-11 18:02:35
阅读次数:
90
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent house...
分类:
其他好文 时间:
2015-04-11 18:01:53
阅读次数:
104
题目描述Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for another array, you must do this in place with...
分类:
其他好文 时间:
2015-04-11 18:02:04
阅读次数:
100
atitit.激活一个窗口总结
1
激活窗口:鼠标激活vswindows消息激活... 1
1.1
Web框架激活... 1
2
退出激活窗口热键(dbg模式)... 1
3
俩个窗口激活优先级... 2
4
Web控件激活—code. 3
1 激活窗口:鼠标激活vs windows消息激活
...
分类:
编程语言 时间:
2015-04-11 18:00:13
阅读次数:
228
Linux命令行编辑快捷键...
分类:
系统相关 时间:
2015-04-11 18:00:25
阅读次数:
303
就是问有多少个圈,简单的并查集,没啥好说的,心塞不开心
#include
using namespace std;
int mapp[1000+5];
void s()
{
for(int i=0;i<1000+5;i++) mapp[i]=i;
}
int bfs(int x)
{
if(x!=mapp[x])
{
mapp[x]=bfs(mapp[x]);
}
return m...
分类:
其他好文 时间:
2015-04-11 18:01:49
阅读次数:
103
Android4.4制作自有SDK探析 最近研究了一下android4.4制作自有SDK的东西。我们都知道,拿到Google的原始代码后,芯片公司会把它结合芯片去平台化,再发出芯片公司的SDK给客户,这种SDK通常情况下都是含全部工程代码环境的,当然里面有一些是以库形式发布的,是需要保密的。那么我们作为中游的技术公司,又有一定深度的功能定制、产品形态变更带来的SDK大量的修改,很多是...
分类:
移动开发 时间:
2015-04-11 18:00:49
阅读次数:
408
http://acm.hdu.edu.cn/showproblem.php?pid=4737
Problem Description
There are n numbers in a array, as a0, a1 ... , an-1, and another number m. We define a function f(i, j) = ai|ai+1|ai+2| ... ...
分类:
其他好文 时间:
2015-04-11 17:59:31
阅读次数:
195
最近要面试了 没 时间玩了.看了下安卓icp ,说实话一直没过aidl这东东 发现网上帖子好多 下载的却好少 .好吧自己玩了一个 留下做个备注吧.
整理下步骤
1创建 aidl接口 文件implaidl.aidl 记得后缀 ,注意不要修饰符哦 我的如此的简单 然后gen目录自动身成了一个对应的包下的implaidl.java文件 里面有个抽象的静态内部类Stub 实现了我们的接口继承了bin...
分类:
移动开发 时间:
2015-04-11 18:01:28
阅读次数:
235
时间限制:10000ms
单点时限:1000ms
内存限制:256MB
描述
在参与过了美食节之后,小Hi和小Ho在别的地方又玩耍了一阵子,在这个过程中,小Ho得到了一个非常有意思的玩具——一棵由小球和木棍连接起来的二叉树!
小Ho对这棵二叉树爱不释手,于是给它的每一个节点都标记了一个标号——一个属于A..Z的大写字母,并且没有任意两个节点的标号是一样的。小Hi也...
分类:
其他好文 时间:
2015-04-11 18:00:42
阅读次数:
114
A ——> startActivityForResult ——> B ——>setResult 不执行finish 方法 A是在B执行了setResult方法还是B被finish后执行onActivityResult方法?
A ——> startActivityForResult ——> B ——>setResult ——> finish 如果栈里面A和B中间还有activity A将不会在...
分类:
其他好文 时间:
2015-04-11 17:58:21
阅读次数:
191
记得第一次做java的题的时候,看到“写出生产者消费者问题”,还以为是和工厂模式有关系。现在想想也是被雷倒了。
java的生产者消费者问题其实是讲多线程并发操作同一资源缓冲区,当资源缓冲区满的时候,线程继续添加数据,则应该使其等待,有空间时再发消息通知;当资源缓冲区没有资源,线程继续取数据时,应该使其等待,有资源是再发消息通知;...
分类:
编程语言 时间:
2015-04-11 18:00:17
阅读次数:
147
点击打开杭电2549
Problem Description
Homer: Marge, I just figured out a way to discover some of the talents we weren’t aware we had.
Marge: Yeah, what is it?
Homer: Take me for example. I want to find...
分类:
编程语言 时间:
2015-04-11 17:58:38
阅读次数:
179
Android自定义view学习笔记02
本文代码来自于张鸿洋老师的博客之Android 自定义View (二) 进阶 学习笔记,对代码进行些许修改,并补充一些在coding过程中遇到的问题、学习的新东西。
相关代码//CustomImageView.java
package mmrx.com.myuserdefinedview.textview;import android.content.C...
分类:
移动开发 时间:
2015-04-11 17:59:17
阅读次数:
142
必须至少有三个步骤:
一,实现协议
二,建立关系
三,设置缩放的范围
具体见代码:
#import "ViewController.h"
@interface ViewController () //一定要先遵守这个协议
@property (weak, nonatomic) IBOutlet UIScrollView *ScrollView;
@property (weak, no...
分类:
移动开发 时间:
2015-04-11 17:58:45
阅读次数:
139
经典的贪心算法。 贪心算法的特点是总是取最优解,最后得到的也是最优,这一点上与动归不同。动归和搜索都是多策略的,所以贪心的理解难度还是很小的。
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int n,a;
vector ans;
int main() {
sca...
分类:
其他好文 时间:
2015-04-11 17:58:45
阅读次数:
113
软件环境:Win7,Keil MDK 4.72a, IAR EWARM 7.2, GCC 4.2,Python 2.7 ,SCons 2.3.2
硬件环境:Armfly STM32F103ZE-EK v3.0开发板
参考文章:RT-Thread编程指南
RT-Thread_1.2.0+lwip+rtgui0.8.0 移植心得
RT-Thread RTOS组件:RTGUI...
分类:
其他好文 时间:
2015-04-11 17:59:46
阅读次数:
639