#include"iostream" using namespace std; void show(int *a,int n){ for(int i = 0;i < n;i++){ cout<<a[i]<<ends; } cout<<endl; } void merge(int *a,int *b,... ...
分类:
编程语言 时间:
2018-05-27 22:11:23
阅读次数:
203
一、首页Header的开发 1.stylus使用 设计图 750 px ,是iphone6 的2倍图设计稿 使用 stylus 方便我们快速的编写 CSS 代码,stylus 是一种CSS预处理语言 npm install stylus --save npm install stylus-loade ...
分类:
移动开发 时间:
2018-05-27 21:40:46
阅读次数:
287
1:coding.net注册账号,并创建项目.可以将readme.txt打上勾 2:cd到本机的项目文件夹下 在git中代表workspace 3:mac用户用ls -all ,linux用户用ll 或者ls -l查看是否已经存在.git文件夹 该文件夹就是repository(本地的git目录) ...
分类:
Web程序 时间:
2018-05-27 18:01:42
阅读次数:
256
1、git merge 和 git rebase https://blog.csdn.net/wh_19910525/article/details/7554489 http://gitbook.liuhui998.com/4_2.html 2、git commit -m 与 git commit ...
分类:
其他好文 时间:
2018-05-27 16:26:40
阅读次数:
185
understand that correlated samples cause problem. and how paralled solve the problem another solution is replay buffers, fully ultilizing the advantag ...
分类:
其他好文 时间:
2018-05-26 21:26:50
阅读次数:
242
Pandas具有功能全面的高性能内存中连接操作,与SQL等关系数据库非常相似。Pandas提供了一个单独的merge()函数,作为DataFrame对象之间所有标准数据库连接操作的入口 - Python Python 在这里,有以下几个参数可以使用 - left - 一个DataFrame对象。 r ...
分类:
其他好文 时间:
2018-05-26 21:24:44
阅读次数:
203
MemoryCache缓存 缓存时效测试 var cachePool = new MyCachePool(); //Thread.Sleep(1000); var value = cachePool.GetFileValue(); /// <summary> /// MemoryCache缓存 // ...
分类:
系统相关 时间:
2018-05-25 17:51:25
阅读次数:
481
V2版本的glance api采用Proxy的方式来构建对象(对象套对象),有点类似装饰器模式,包裹的顺序是 Auth(外层) Notifier Policy Quota Location Domain/DB(内层),对于镜像的内存数据结构表示,每层都有对应的ImageFactoryProxy类,对 ...
分类:
其他好文 时间:
2018-05-25 14:02:42
阅读次数:
167
// 点击导出Excel $(document).on("click", "button.excel", (res) => { qqkj.getExcel(res); }); /** 保单列表 * 导出Excel * @param callback 回调函数 */ qqkj.getExcel = f ...
分类:
Web程序 时间:
2018-05-25 13:53:46
阅读次数:
162
深入理解 index merge 是使用索引进行优化的重要基础之一。理解了 index merge 技术,我们才知道应该如何在表上建立索引。 1. 为什么会有index merge 我们的 where 中可能有多个条件(或者join)涉及到多个字段,它们之间进行 AND 或者 OR,那么此时就有可能 ...
分类:
数据库 时间:
2018-05-25 13:31:53
阅读次数:
185