uva11488:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=2483题意:给你n个串,对于一个前缀,如果出现k次,就会得到前缀的...
分类:
其他好文 时间:
2014-08-14 15:58:28
阅读次数:
255
由于GFW的关系,国内用户在使用docker的时候,pull一个基本的镜像都拉下来,更不用说使用官方的index镜像了。差点放弃使用docker了,google了一圈,总算找到办法。
第一步:安装docker
参见官方指南或则各类中文指南
第二步:从文件系统创建一个image镜像
创建镜像有很多方法,官方的推荐是pull一个,无奈GFW,想下一个基本的ubuntu都下不下来
还有...
分类:
其他好文 时间:
2014-08-14 14:12:48
阅读次数:
334
#显示列表 public function index(){ //载入分页类 $this->load->library('pagination'); //每页显示的条数 $perPage=11; /****配置分页**...
分类:
其他好文 时间:
2014-08-14 13:53:58
阅读次数:
257
Problem APlay with Floor and Ceilhttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=18&page=show_problem&problem=1614扩展gcd求...
分类:
其他好文 时间:
2014-08-14 13:30:08
阅读次数:
310
1、表访问方式优化:a)普通表优先“Index Lookup 索引扫描”,避免全表扫描大多数场景下,通过“Index Lookup 索引扫描”要比“Full Table Scan (FTS) 全表扫描”效率要高的多。在编写SQL时,为了保证查询能够使用索引,需要避免出现如下场景:is null 和 ...
分类:
数据库 时间:
2014-08-14 10:34:28
阅读次数:
353
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:
其他好文 时间:
2014-08-14 10:27:38
阅读次数:
181
简单题。#include #include using namespace std;int main() { int T; cin >> T; while (T--) { string s; cin >> s; int l = 0; ...
分类:
其他好文 时间:
2014-08-14 01:22:57
阅读次数:
207
在这里就不在介绍百度的具体配置,配置详见http://developer.baidu.com/map/index.php?title=iossdk 1.首先接受基本的地图功能 新建一个地图类,xib拖也行,我这边是代码实现的。 ?_mapView?=?[[BMKMapView?a...
分类:
移动开发 时间:
2014-08-13 19:33:37
阅读次数:
328
今天客户反映主页打开乱码求助得出需要在后台修改之前主页位置./index.html这样的,意思是当前主页,然后改成../index.html意思是退出当前主页。修改更新主页后问题解决。
分类:
其他好文 时间:
2014-08-13 19:15:48
阅读次数:
211
CI工作流程:
所有的入口都从根目录下的index.php进入,确定应用所在目录后,加载 codeigniter/CodeIgniter.php 文件,该文件会顺序加载以下文件执行整个流程。
index.php:检测文件路径,加载codeigniter.php文件
codeigniter.php: 加载 Common/constants....文件。...
分类:
其他好文 时间:
2014-08-13 18:50:37
阅读次数:
307