//// main.cpp// circleQueue//// Created by zhou on 14-6-19.// Copyright (c) 2014年 zhou. All rights reserved.//#define Max 50typedef struct ...
分类:
其他好文 时间:
2014-06-28 18:54:47
阅读次数:
171
Copyright (2014) 郭龙仓. All Rights Reserved.OpenFlow传统的网络环境中,仅仅有路由器/交换机之间的接口/协议是标准化的,可是在网络设备内部,数据平面和控制平面事实上是耦合在一起的,每一家厂商都有自己专有的系统来实现这两个平面,并且数据平面和控制平面不可以...
分类:
其他好文 时间:
2014-06-28 18:32:46
阅读次数:
175
Ubuntu Linux:1.root账号执行:apt-get install mysql-server2.设置远程连接:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123' WITH GRANT OPTION;CentOS Li...
分类:
数据库 时间:
2014-06-28 18:04:16
阅读次数:
277
Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in that surrounded region...
分类:
其他好文 时间:
2014-06-28 18:03:06
阅读次数:
238
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.The same repeate...
分类:
其他好文 时间:
2014-06-20 23:37:29
阅读次数:
195
functionunescape($str) {$str= rawurldecode($str);preg_match_all("/(?:%u.{4})|&#x.{4};|&#\d+;|.+/U",$str,$r);$ar= $r[0];//print_r($ar);foreach($aras$k=...
分类:
Web程序 时间:
2014-06-20 22:45:44
阅读次数:
265
一、数据库操作 1、查看当前存在的所有数据库 mysql>show databases; 2、切换当前使用数据库 mysql>use test 3、授权 mysql>grant all on 数据库名.* to 用户名@主机名 4、创建数据库 mysql>create...
分类:
数据库 时间:
2014-06-20 19:33:51
阅读次数:
209
这是一个Oracle的列转行函数:LISTAGG()先看示例代码:with temp as( select 'China' nation ,'Guangzhou' city from dual union all select 'China' nation ,'Shanghai' city fr.....
分类:
数据库 时间:
2014-06-20 19:13:41
阅读次数:
224
转载:http://blog.csdn.net/ninlei0115/article/details/97321911、在Makefile中只能在target中调用Shell脚本,其他地方是不能输出的。比如如下代码就是没有任何输出:VAR="Hello"echo "$VAR"all: ..........
分类:
其他好文 时间:
2014-06-20 17:26:57
阅读次数:
280
未用SQL CTE and case when:ALTER PROCEDURE [dbo].[usp_rptDropboxBatchSummary1] @DataSource varchar(10)='ALL', @BatchNum varchar(8)='ALL'...
分类:
其他好文 时间:
2014-06-20 14:09:23
阅读次数:
284