def minindex array_,index_ index=nil beginindex = 0 minvalue = array_[0] if index_ > 0 beginindex=index_+1 minvalue = array_[index_] end ...
分类:
编程语言 时间:
2014-11-23 18:53:23
阅读次数:
161
给子div添加margin-top: 20px,发现父子DIV都一起相对BODY下移了20PX,为何不是只是子DIV下移20PX ? 如果我给父DIV添加border: 1px solid,就可以实现父DIV不动,只是子DIV相对父DI...
分类:
其他好文 时间:
2014-11-23 18:53:52
阅读次数:
150
ZooKeeper 秘诀 与解决方案A Guide to Creating Higher-level Constructs with ZooKeeperOut of the Box Applications: Name Service, Configuration, Group Membership...
分类:
其他好文 时间:
2014-11-23 18:52:51
阅读次数:
339
这篇大致是IDE的使用技巧,常用的也就那么几个。 我自己用的最多的是注释、取消注释、格式调整、运行测试、开始调试、断开调试、重新开始调试、删除行ctrl+L、保存、全部保存、打开资源管理器、搜索等几个。 那么最全的在这里Default Keyboard Shortcuts in Visual...
分类:
其他好文 时间:
2014-11-23 18:51:13
阅读次数:
220
先在项目中导入已有的xxx.db下面新建DBManager .java和SQLiteActivity.javapackage android.sqlite;import java.io.FileOutputStream;import java.io.IOException;import java.i...
分类:
数据库 时间:
2014-11-23 18:50:45
阅读次数:
280
// Playground - noun: a place where people can play// 通过代码快速了解swift常用知识,需要一定object-c基础import UIKit// 声明常量let maximumNumberOfAttemps = 10// 声明变量var cur...
分类:
编程语言 时间:
2014-11-23 18:53:09
阅读次数:
214
原文: ?????使用??AdvancedInstaller打包web工程设置tomcat端口的方法 1.首先,要把你要打包的tomcat下的server.xml文件删掉,因为tomcat自带的server.xml无法与你在Advanced Installer添加的对话框中的编辑框相关联。
2.随便...
分类:
Web程序 时间:
2014-11-23 18:52:03
阅读次数:
250
假设字符串中只由'A'、'B'、'C'、'D'组成,且长度为7。并设函数REPLICATE(,)可以创建一个的n个副本的字符串,另外还有REPLACE(,,),实现如下: 1 BEGIN 2 DECLARE inString CHAR(7); 3 SET inString = 'DCDBAAB'; ...
分类:
数据库 时间:
2014-11-23 18:52:09
阅读次数:
305
// Playground - noun: a place where people can playimport UIKit// 枚举语法enum SomeEnumeration { // enumeration definition goes here}// 定义一个枚举enum Comp...
分类:
编程语言 时间:
2014-11-23 18:50:48
阅读次数:
197
本文主要介绍记录和恢复listView滚动位置的3种方法,记录listView滚动到的位置的坐标(推荐)、记录listView显示在屏幕上的第一个item的位置、通知适配器数据改变。有时在view切换时,需要恢复listView之前滚动到的位置,鉴于网上已有资料说的都是第二种方法,而第二种方法本身在...
分类:
移动开发 时间:
2014-11-23 18:50:20
阅读次数:
174
在上一篇文章中我们大致浏览了zookeeper的启动过程,并且提到在Zookeeper的启动过程中leader选举是非常重要而且最复杂的一个环节。那么什么是leader选举呢?zookeeper为什么需要leader选举呢?zookeeper的leader选举的过程又是什么样子的?本文的目的就是解决...
分类:
其他好文 时间:
2014-11-23 18:52:17
阅读次数:
558
最近在做一个下载工具时,发现CSDN上的资源下载时竟然没有被拦截到,经过分析,终于有了一个发现,解决了我之前做文件下载时的乱码问题,所以转载这篇释疑文章,希望有缘人可以看到,可以从中得到帮助,也用来备忘。CSDN中的下载时Header里的内容是这样的:键值Content-Dispositionatt...
分类:
Web程序 时间:
2014-11-23 18:49:48
阅读次数:
1574
GS界面上显示的重要参考数据,这个是压测时重要参考struct GSinfo{ int revBuffNum; int sendBuffNum; int clientNum; int dbAskNum; ///NET(A),如果这个数据比较大,就说明NET即网络...
分类:
其他好文 时间:
2014-11-23 18:50:44
阅读次数:
211
puts("Please input a number between 1 and 100: "); scanf("%d",&Number); printf("Your input number is %d\n",Number); ...
分类:
其他好文 时间:
2014-11-23 18:50:55
阅读次数:
147
ImageView.setBackgroundColor(android.graphics.Color.parseColor("#ffffff"));ImageView.setBackgroundColor(Color.RED);ImageView.setBackgroundColor(Color....
分类:
其他好文 时间:
2014-11-23 18:49:06
阅读次数:
122
问题描述:一个矩阵,里面的元素只为1或者0,要求把元素为1的元素的同行和同列的所有元素都置为1,要求:算法空间复杂度为O(1). 1 void _setRowAndCol(int arrays[], int row, int col) 2 { 3 assert(arrays != NULL ...
分类:
其他好文 时间:
2014-11-23 18:48:23
阅读次数:
243