直接插入排序#include typedef int Keytype;typedef struct{ Keytype key; int data;}RecType;void InsertSort(RecType R[],int n){ int i; int j; RecType temp; f...
分类:
其他好文 时间:
2014-06-21 09:52:18
阅读次数:
223
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:getandset.get(key)- Get the valu...
分类:
其他好文 时间:
2014-06-21 09:18:50
阅读次数:
263
从代码: $arr = array(1,2,3,4,5); echo '$arr = array(1,2,3,4,5)',''; foreach($arr as $key => &$row) { echo key($arr), '=>'...
分类:
其他好文 时间:
2014-06-21 08:08:53
阅读次数:
198
监控server端的安装部署一、apache的安装下载httpd-2.2.15.tar.gz gunzip httpd-2.2.15.tar.gztar xvf httpd-2.2.15.tarcd httpd-2.2.15./configure --prefix=/usr/local/apache...
分类:
移动开发 时间:
2014-06-21 07:24:13
阅读次数:
319
http://blog.csdn.net/czh0766/article/details/5260360昨天看了算法导论对散列表的介绍,今天看了一下Hashtable, HashMap这两个类的源代码,并参考了网上的一些观点,对它们的实现有了大概的理解。原来hashtable里的key-value还...
分类:
其他好文 时间:
2014-06-21 00:38:48
阅读次数:
379
/** * $str 原始字符串 * $encoding 原始字符串的编码,默认GBK * $prefix 编码后的前缀,默认"&#" * $postfix 编码后的后缀,默认";" */function unicode_encode($str, $encoding = 'GBK', $prefix...
分类:
Web程序 时间:
2014-06-20 22:26:42
阅读次数:
286
工作中遇到一需求,要求传送一个数组给js画图数组的key是日期,value是当天的值问题是从数据库取出来的值有些日期是没有的,需要给这里没有的日期补上值0这个时候就可以先创建一个数组,key是所需要的日期,value都是0例如$dateArray=array("2014-01-01"=>0,"201...
分类:
其他好文 时间:
2014-06-20 22:24:39
阅读次数:
240
#include "aes.h"#include "modes.h"#include "e_os2.h"#include "aes_locl.h"#include "opensslconf.h"AES_KEY aes;//aes cbc模式加解密用到的向量unsigned char iv[AES_B...
分类:
移动开发 时间:
2014-06-20 22:20:17
阅读次数:
506
首先,先谈一下Set和Map的一些特性及体系结构: 1.1 Set和Map Set代表一种无序的、元素不可重复的集合。Map则代表是一种key-value对组成的集合,Map集合类似于传统的关联数组。表面上看它们之间的关系的相似性很少,实则Map和Set之间有着莫大的关联,可以这样说Map集...
分类:
编程语言 时间:
2014-06-20 19:48:41
阅读次数:
357
Oracle没有自增字段这样的功能,但是通过触发器(trigger)和序列(sequence)可以实现。先建一个测试表了:create table userlogin( id number(6) not null, name varchar2(30) not null primary key)tab...
分类:
数据库 时间:
2014-06-20 18:51:30
阅读次数:
277