题意:给n,m,k;输出n经过+-*%后(n%k+k)%k==((n+1)%k)%k
输出最小路径与运算副zsd:% 只是求余数 有正负 mod 是求模 无正负、yhd:对m*k求余对 对k求余不对#include#includeusing
namespace std;struct Node{ .....
分类:
其他好文 时间:
2014-07-22 23:06:14
阅读次数:
369
采用sys or system / manager as sysdba;
连接数据库。创建普通用户konglin: create user konglin identified by pwd_oracle;删除用户, drop
user konglin;授予用户登录数据库的权限: grant cre...
分类:
数据库 时间:
2014-05-01 15:29:35
阅读次数:
372
>原文标题:Node.js Module – exports vs
module.exports
原文链接:[http://www.hacksparrow.com/node-js-exports-vs-module-exports.html](http://www.hacksparrow.co...
分类:
Web程序 时间:
2014-05-01 15:25:33
阅读次数:
452
connect resource权限;grant connect,resource to
user;后用户包括的权限:CONNECT角色: --是授予最终用户的典型权利,最基本的ALTER SESSION --修改会话CREATE CLUSTER
--建立聚簇CREATE DATABASE LINK...
分类:
数据库 时间:
2014-05-01 14:58:47
阅读次数:
456
一种动态样式语言.LESS 将 CSS 赋予了动态语言的特性,如变量,继承,运算,函数.
LESS 既可以在客户端上运行 (支持IE 6+, Webkit, Firefox),也可以借助Node.js或者Rhino在服务端运行。变量简单示例: //
LESS@color: #4D926F;#hea....
分类:
其他好文 时间:
2014-05-01 14:25:11
阅读次数:
350
安装node.js从http://nodejs.org/
下载安装程序进行安装。安装后从开始菜单启动:Node.js command
prompt安装web开发框架Express如果需要代理访问网络,先用下面的命令设置代理:> npm config set
proxy=http://192.168....
分类:
Web程序 时间:
2014-05-01 01:48:43
阅读次数:
375
为了避免目标端nrpe进程监控多个接口而造成的安全漏洞。有必要固定服务端的地址,对nrpe.cfg配置中,有下列一行介绍
#SERVER ADDRESS
# Address that nrpe should bind to in case there are more than one interface
# and you do not want nrpe to bind on all in...
分类:
其他好文 时间:
2014-04-27 22:36:17
阅读次数:
454
RSA is one of the most powerful methods to encrypt data. The RSA algorithm is described as follow:
> choose two large prime integer p, q
> calculate n = p × q, calculate F(n) = (p - 1) × (q - 1)
...
分类:
其他好文 时间:
2014-04-27 21:37:59
阅读次数:
315
在Linux内核中,hlist(哈希链表)使用非常广泛。本文将对其数据结构和核心函数进行分析。
和hlist相关的数据结构有两个:hlist_head 和 hlist_node
//hash桶的头结点
struct hlist_head {
struct hlist_node *first;//指向每一个hash桶的第一个结点的指针
};
//hash桶的普通结点
struct hl...
分类:
系统相关 时间:
2014-04-27 21:24:06
阅读次数:
579
Annotations are one of the fundamental language changes
introduced in Java SE5. They provide information that you need to fully describe your program, but that cannot be expressed in Java. Thus, anno...
分类:
编程语言 时间:
2014-04-27 21:14:59
阅读次数:
431