设置蓝牙的TX Power 使用的函数sd_ble_gap_tx_power_set(int8_t tx_power); 参看例子为 S110/ble_app_proximity #define TX_POWER_LEVEL (4) /**< TX Power Level value. This w ...
分类:
其他好文 时间:
2016-04-11 10:01:31
阅读次数:
537
mysql锁的方式根据隔离级别不同而不同,因为默认隔离级别为repeatable-read可重复读,我们普遍理解为mysql锁实现方式为行锁,行锁就是利用索引实现完成的,mysql的支持的隔离级别有四种,这网上很多介绍,平常用的最多的也就是read-committed和repeatable-read两个,今天就对这..
分类:
数据库 时间:
2016-04-07 18:43:47
阅读次数:
699
#include<iostream>usingnamespacestd;voidShellSort(int*a,intlength){ if(a==NULL||length<=0) { return; } intgap=length; while(gap!=1) { if(gap>1) { gap=gap/3+1; } for(intbegin=gap;begin<length;begin+=gap) { intindex=begin; inttmp=a[..
分类:
编程语言 时间:
2016-04-05 10:58:20
阅读次数:
151
基本思想 1.把记录按步长 gap 分组,对每组记录采用直接插入排序方法进行排序。2.随着步长逐渐减小,所分成的组包含的记录越来越多,当步长的值减小到 1 时,整个数据合成为一组,构成一组有序记录,则完成排序。 代码实现 效率分析 不稳定 空间复杂度:O(1) 时间复杂度:O(nlog2n) 最坏情 ...
分类:
编程语言 时间:
2016-04-03 18:47:23
阅读次数:
152
Solution 1 : (数据结构与算法分析 C++描述 第三版) template void shellSort(vector &v) { for(int gap = v.size() / 2; gap > 0; gap /= 2) { for(int i = gap; i = gap && t... ...
分类:
系统相关 时间:
2016-03-26 12:04:38
阅读次数:
192
一、多列属性分割列-column-count属性规定元素应该被分隔的列数列间隔-column-gap属性规定列之间的间隔列规则-column-rule属性规定列之间的宽度、样式和颜色-语法为:column-rule:widthstylecolor;浏览器兼容性-InternetExplorer10和Opera支持多列属性-FireFox需要前缀-moz--Chr..
分类:
Web程序 时间:
2016-03-23 20:28:10
阅读次数:
1477
1、多列布局 columns:column-width||column-count 2、列间距 column-gap 3、列表边框 column-rule 4、跨列设置 column-span:all /*跨过所有列*/ 5、盒子模型 box-sizing:border-box|content-bo
分类:
Web程序 时间:
2016-03-22 00:43:57
阅读次数:
179
In the last chapter we saw how neural networks can learn their weights and biases using the gradient descent algorithm. There was, however, a gap in o
分类:
编程语言 时间:
2016-03-20 14:21:05
阅读次数:
367
spring配置 <context:property-placeholder location="classpath:config.properties" ignore-resource-not-found="true" ignore-unresolvable="true"/> config.pro
分类:
编程语言 时间:
2016-03-10 14:49:06
阅读次数:
159