1 // Playground - noun: a place where people can play 2 3 import UIKit 4 5 var str = "Hello, World!" 6 7 //1 定义变量常量/常量 8 // define const ...
分类:
编程语言 时间:
2015-02-05 00:34:52
阅读次数:
282
alps\frameworks\base\packages\Keyguard\src\com\android\keyguard\KeyguardViewMediator.java#1384 行左右: ///M: [ALPS00827994] always to play sound for user...
分类:
移动开发 时间:
2015-02-03 22:44:00
阅读次数:
179
今天详细的看了下RTSPSession的会话处理代码,该模块主要是Run方法内对会话的状态机进行管理,实现对RTSP会话的处理,我以点播Movie文件夹下的视频文件为例,深入的学习了(Describe、Setup、Play的点播流程),并按照状态机的处理顺序对他们进行一一解析,如下:
【转载请注明出处】:http://blog.csdn.net/longlong530
1. 状态机 kRe...
创建一个playGround,然后看一下代码,跟着打,别复制粘贴。 1 // Playground - noun: a place where people can play 2 3 import UIKit 4 5 // HelloWorld 6 var str = "Hello,...
分类:
编程语言 时间:
2015-02-03 14:49:53
阅读次数:
191
题意:给定n表示有n个格子,下面每个格子为O的概率是多少。对于一段连续 x 个O的价值就是 x^2 ;求获得的价值的期望是多少。
思路:n^2=n×(n-1)+n,设ai为第i段连续O的长度,∑ai^2 = ∑[ ai+ ai*(ai-1) ] = ∑ ai*(ai-1) + ∑ai = ∑ C(ai, 2)*2 + ∑ai,那么问题可以转
化为求长度大于1的连续段数*2+O的个数的总期望。 ...
分类:
其他好文 时间:
2015-02-02 14:12:38
阅读次数:
88
题目链接:http://poj.org/problem?id=1386Some of the secret doors contain a very interesting word puzzle. The team of archaeologists has to solve it to open...
分类:
其他好文 时间:
2015-02-01 13:22:07
阅读次数:
196
Description Today we play a squigglysudoku, The objective is to fill a 9*9 grid with digits so that each column, each row, and each of the nine Con...
分类:
其他好文 时间:
2015-01-31 14:14:17
阅读次数:
147
点击打开链接
1167. Bicolored Horses
Time limit: 1.0 second
Memory limit: 64 MB
Every day, farmer Ion (this is a Romanian name) takes out all his horses, so they may run and play. When th...
分类:
其他好文 时间:
2015-01-31 12:20:11
阅读次数:
235
原题:2857. Digit SortingTime Limit: 1.0 Seconds Memory Limit: 65536KTotal Runs: 3234 Accepted Runs: 1704Several players play a game. Each player choose....
分类:
其他好文 时间:
2015-01-31 12:04:15
阅读次数:
185
java不充许多继承是,为了避免“致命方块”的出现例如 B继承A,C继承A。 C和C里面都有play()方法 。现在D继承了B,C 想想D.play()调用 的是哪个play()呢,这就是问题所在。所以java提供了接口来解决此问题。问:接口并不是真正的多重继承,因为你无法在它里面实现程序代码,不是...
分类:
其他好文 时间:
2015-01-31 01:38:15
阅读次数:
109