蓝牙,wifi,3g 作为移动端平台最常见的dongle,蓝牙现在应用越来越广泛,特别是现在流行智能终端,多点互控,wifi,3g等资源消耗大,红外又有距离和障碍物的限制,所以说蓝牙通信在未来其它的不说,单在智能TV上应用的情景将会越来越广泛.这里只是初步理解学习,之后将会一层一层从kernel直到application...
分类:
移动开发 时间:
2014-11-28 18:19:22
阅读次数:
173
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, ...
分类:
其他好文 时间:
2014-11-27 06:44:23
阅读次数:
118
题意:找出这些串中最长的公共子串(长度≥3),如果长度相同输出字典序最小的那个。分析:用库函数strstr直接查找就好了,用KMP反而是杀鸡用牛刀。 1 #include 2 #include 3 4 char a[15][70], sub[70]; 5 int p[70], l; 6 7 ...
分类:
其他好文 时间:
2014-11-26 18:48:54
阅读次数:
156
"green","", "red","b" => "green", "","blue", "red","c" => "witer","hello","witer");//$result = array_unique($input); //去除重复元素$result = a_array_unique....
分类:
编程语言 时间:
2014-11-26 18:48:40
阅读次数:
177
屏幕尺寸大于400px时使用该css 屏幕尺寸小于399px时使用该cssbody{background:blue;}/*宽度500px-800px之间+高度100px-400px之间 蓝色*/@mediascreen and (max-width:500px){body{background:.....
分类:
Web程序 时间:
2014-11-25 18:14:28
阅读次数:
152
json数据格式如下:{
"value":[
23,
4,
24,
95,
27,
35,
93,
63,
75,
17,
13,
93,
54,
71,
61,
14,
13,
14,
29
]
}需要highcharts的dark-blue.js文件html文件格式如下:<!doctypehtml>
<htmllang="en">
<head>
<scripttype="text/javas..
分类:
Web程序 时间:
2014-11-25 02:03:22
阅读次数:
286
CGContextMoveToPoint(ctx, 4.5, (KCaladerViewOfHeadHight-1)+0.5); [[UIColor colorWithRed:61/255.0 green:122/255.0 blue:215/255.0 alpha:1] setStroke...
分类:
移动开发 时间:
2014-11-24 17:08:33
阅读次数:
139
在Java1.5之后,引入了枚举新的特性,在之前,java有两种定义新类型的方式:类和接口。但是在特殊情况下,满足不了我们的需求,比如我们定义一个Color类,它只能有Red,Blue,Green三种值,对于其他的值来说都是无效的。为引入枚举之前,我们一般使用其私有化其构造方法,然后在其内部实例化三个常量,然后再取值。这样不仅繁琐,而且带来了更多不安全的问题。
package andy.enum...
分类:
编程语言 时间:
2014-11-24 13:37:27
阅读次数:
177
列表列表的初始化及对其首尾的访问:scala> val colors = List("red", "blue", "green")colors: List[String] = List(red, blue, green)scala> colors.headres15: String = redsca...
分类:
其他好文 时间:
2014-11-22 22:59:20
阅读次数:
270
local ret_status="%(?:%{$fg_bold[green]%}? :%{$fg_bold[red]%}? %s)"PROMPT='%(!.%{$fg_bold[blue]%}.%{$fg_bold[green]%}%n@)%m %{$fg_bold[cyan]%}%(!.%1~....
分类:
其他好文 时间:
2014-11-22 17:14:34
阅读次数:
314