任意公共方法的执行: execution(public * *(..))任何一个以“set”开始的方法的执行: execution(* set*(..))AccountService 接口的任意方法的执行: execution(* com.xyz.service.AccountService....
分类:
编程语言 时间:
2014-08-28 11:00:29
阅读次数:
205
There is a building of 100 floors. If an egg drops from the Nth floor or above, it will break. If it's dropped from any floor below, it will not break...
分类:
其他好文 时间:
2014-08-20 12:06:52
阅读次数:
189
一道找规律的题,可以看出,大的三角形可以划分成好多个三层的三角形:
【x】
【a】【x-a】
【y】 【 】【z】
这里面xyz都已知,所以可以求出a = (x + y - z ) /2
14043615
11040
Add bricks in the wall
Accepted
C++
0.019
2014-08-15 ...
分类:
其他好文 时间:
2014-08-15 14:39:28
阅读次数:
176
给出一个三维的迷宫以及起点和终点,求能否到大终点,若果能输出最短步数三维的问题无非就是变成了6个搜索方向最后强调一下xyz的顺序,从输入数据来看,读入的顺序是map[z][x][y]总之,这是很基础的一道题 1 //#define LOCAL 2 #include 3 #include 4 #i.....
分类:
其他好文 时间:
2014-08-15 01:23:57
阅读次数:
238
查看设备列表
adb devices
连接设备
adb -s device_name shell
安装软件
adb install E:\test.apk
查看日志
logcat
日志过滤请参考
http://blog.csdn.net/xyz_lmn/article/details/7004710
mark files...
分类:
数据库 时间:
2014-08-13 13:11:06
阅读次数:
276
大意:有n个盒子,前者只有xyz均大于后者,前者才可把后者装下告诉你n个盒子的xyz求最少露在外面的盒子数思路:最小路径覆盖 = n - 最大匹配代码: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 ...
分类:
其他好文 时间:
2014-08-12 21:38:34
阅读次数:
136
题目:uva437 - The Tower of Babylon(DAG上的DP)
题目大意:给你一些立方体,给出长宽高XYZ。现在希望你将这些立方题叠起来,使得最后的高度最大,并且这些立方体是可以无限次使用的,但是一个立方体要在另一个立方体的上面的话是需要满足这个立方体的底面是可以完全包含在下面的那个立方体的底面。
解题思路:其实这里的无限次使用没有什么用,因为一个立方体最多...
分类:
其他好文 时间:
2014-08-06 23:06:32
阅读次数:
286
已知 $$x,y,z>0,\quad xyz=1.$$试证:$$\frac{1}{(1+x)^2}+\frac{1}{(1+y)^2}+\frac{1}{(1+z)^2}\geq\frac{3}{4}.$$实在是想不出啥初等的证法, 毕竟过了差不多十年没用了. 大学的倒是可以用 Lagrange 乘...
分类:
其他好文 时间:
2014-08-05 09:24:58
阅读次数:
140
Problem Description
XYZ-26进制数是一个每位都是大写字母的数字。 A、B、C、…、X、Y、Z 分别依次代表一个0 ~ 25 的数字,一个 n 位的26进制数转化成是10进制的规则如下
A0A1A2A3…An-1 的每一位代表的数字为a0a1a2a3…an-1 ,则该XYZ-26进制数的10进制值就为
m = a0 * 26^(n-1) + a1 * 26^(n-...
分类:
其他好文 时间:
2014-07-29 14:37:48
阅读次数:
159
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { struct XYZ { ...
分类:
其他好文 时间:
2014-07-22 22:34:55
阅读次数:
208