1.php str_replace函数:str_replace()
函数使用一个字符串替换字符串中的另一些字符。str_replace(find,replace,string,count)find:必须,表示被查找的值replace:必须,替换别查找的值的值string:必须,被查找的字符串coun...
分类:
Web程序 时间:
2014-05-26 19:38:05
阅读次数:
292
1、绑定设置时间格式 2、Repeater1.Items.Count
是指Repeter1的数据绑定条数 " : ""%> " : ""%> 上两行的意思是:前两条数据加上图标。(暂且这样理解)3、
在当前页面中嵌入其他页面4、a标签 中的target是做什么用...
分类:
其他好文 时间:
2014-05-26 18:17:54
阅读次数:
256
BULK COLLECT 可以降低 SQL 引擎到 PL/SQL 引擎的上下文交换(context
switch)次数,,从而实现数据的高速检索。”并不是限制必须一次完成。Oracle 提供了 LIMIT
子句,可以限制每次从表中获取的记录数,测试如下:SQL> select count(*) fr...
分类:
其他好文 时间:
2014-05-26 01:20:07
阅读次数:
273
$arr = array(3,55,45,2,67,76,6.7,-65,85,4);function
quickSort($arr){ if (count($arr) ";print_r($new_arr);exit;
分类:
Web程序 时间:
2014-05-25 19:13:17
阅读次数:
233
//顺序查找(数组里查找某个元素)$arr =
array(3,55,45,2,67,76,6.7,-65,85,4);function seq_sch($array, $k){ for($i=0;
$i<count($array); $i++){ if($array[$i]==...
分类:
Web程序 时间:
2014-05-25 19:11:16
阅读次数:
285
我们经常会用到平年和闰年对应的天数,直接对数组静态初始化固然可以,但是手写起来很容易写错,所以用个函数得对应天数。
完整代码:
#include
using namespace std;
int count = 0;
int a[2][12];
void init_arr(int a[2][12])
{
for(int i=0;i<13;i++)
{
if(i==1||i==3||i=...
分类:
其他好文 时间:
2014-05-25 18:16:39
阅读次数:
258
三种情况$array1=array("item1","item2","item3");1.清空数组的value保留keyforeach($array1as$key=>$value){
unset($array1[$value]);
}这时count($array1)的结果为32.将数组重新定义为空数组$array1=array();3.删除数组变量,将资源完全释放unset($array1);
分类:
Web程序 时间:
2014-05-25 08:15:29
阅读次数:
389
哈希表简单实现,练个手
#include "stdafx.h"
#include
using namespace std;
#define HASHSIZE 12
typedef struct HashTable
{
int *elem;
int count;
}HashTable;
int m = 0;
void Print(HashTable* ...
分类:
其他好文 时间:
2014-05-25 07:02:06
阅读次数:
169
线段树的区域更新,然后单点查询。
x1 x2 c:区域更新x1-x2为c。
全部染色之后,从0-8000依次查询每个点的颜色。然后存贮每一种颜色有几块。
#include
#include
#include
#include
#include
using namespace std;
#define lmin 0
#define rmax 8000
#define lson l,(l+r)/...
分类:
其他好文 时间:
2014-05-24 19:10:12
阅读次数:
221
点击打开链接
题意:
集合S支持一下四种操作:
INSERT(S,x) : 如果S中没有x,则插入x
DELETE(S,x): 如果S中有x,则删除x
K-TH(S): 输出S中第K小的数
COUNT(S,x): 统计S中小于x的数有多少个
一共有Q(1 ≤ Q ≤ 200000)次操作。
Treap模板。。
#i...
分类:
其他好文 时间:
2014-05-24 18:03:11
阅读次数:
213