发布时间:2013-10-12 16:24:00
Theme SectionTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 574 Accepted Submission(s): 308Problem DescriptionIt's time for music! A lot of popular musicians are invited to join us in the music festival. Each of .........【阅读全文】
发布时间:2013-10-11 20:07:11
openssl genrsa -out private.key 1024openssl rsa -in private.key -pubout -out public.key BIO *key = NULL; RSA * r = NULL; key = BIO_new(BIO_s_file()); .........【阅读全文】
发布时间:2013-10-10 14:41:56
1. 为什么要使用双向栈?通过上一篇博客 - 特殊的线性表(栈),不难知道栈的顺序存储(数组实现)性能相对较高,因为它不存在插入和删除时移动元素的问题,但是它有一点缺陷:要实现确定数组存储容量的大小,万一不够,需要扩充容量。这时双向栈就派上用场了,它可以最大限度的利用事先开辟的存储空间。2. 双向栈有什.........【阅读全文】
发布时间:2013-10-09 15:34:38
这里使用的操作系统是CentOS release 5.9 (Final),并且已经安装了git和一些必要的开发工具。在服务器上创建用户和项目仓库(repository)[plain] view plaincopyuseradd git #创建git用户 passwd git #设置密码 su git #切换到git用户 cd ~/ #切换到home目录 git init --bare cube #创建一.........【阅读全文】