首先.NET中的ICryptoTransform是单向的,也就是只能从一个状态将数据转化成另一个状态,反之是不可以的。当然手动
操作ICryptoTransform还是比较繁琐的,通过CryptoStream可以更轻松地操作一个ICryptoTransform。由于
ICryptoTransform...
分类:
Web程序 时间:
2014-04-30 02:40:00
阅读次数:
559
Given preorder and inorder traversal of a tree,
construct the binary tree.Note:You may assume that duplicates do not exist in
the tree.思路:由前序遍历数组和中序遍历...
分类:
其他好文 时间:
2014-04-30 02:20:33
阅读次数:
366
收集一些对PHP研究较深的文章,方便平时的查阅。 1)弱类型变量实现 2)PHP的生命周期
3)变量的引用计数、写时复制(Reference counting & Copy-on-Write) 4)变量的存储方式 5)数组
6)HashTable API 7)面向对象
分类:
Web程序 时间:
2014-04-30 01:38:26
阅读次数:
565
项目中嵌入了IE控件,近期做了一次大改版,发现网页不能进行复制和剪切了,折腾了半天,发现是com初始化有问题:修正前的方式:CoInitialize(NULL);//
do your workCoUninitialize();修正后的方式:OleInitialize(NULL);// do your...
分类:
Web程序 时间:
2014-04-29 23:24:02
阅读次数:
509
1. 打开新的窗口并传送参数:
传送参数:response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>")
接收参数:string a = Reque....
分类:
其他好文 时间:
2014-04-29 22:53:14
阅读次数:
571
求由所有的点组成的三角形中周长最小的三角形的周长1.将所有的点按横坐标大小排序2.从第一个点开始往后枚举,判断能否组成三角形,判断当前三角形周长是否小于已经得到的最小周长代码如下:#include#include#include#includeusing
namespace std;const do...
分类:
其他好文 时间:
2014-04-29 21:14:42
阅读次数:
504
A LiveJournal course of developmentis a project
in the 99 years began in the campus, a few people do as a hobby such an
application, in order to achie...
分类:
其他好文 时间:
2014-04-29 19:38:16
阅读次数:
589
有时候无法从控件中拖拽一个按钮到storyboard,必须用编写代码方式添加按钮: 1 -
(void)viewDidLoad 2 { 3 [super viewDidLoad]; 4 // Do any additional setup after
loading the view...
分类:
其他好文 时间:
2014-04-28 15:01:42
阅读次数:
532
filestream是一个读取文件的stream,其本身也是支持read和write的,负责的对文件的读与写,而streamreader则是建立在对流的基础上的读,同时还有streamwritehttp://bbs.csdn.net/topics/280026654基本相似,但是目标数组的类型不同,...
分类:
其他好文 时间:
2014-04-28 07:54:07
阅读次数:
521
http://www.thegeekstuff.com/2010/07/perl-tcp-udp-socket-programming/In this
article, let us discuss how to write Perl socket programming using the inb...
分类:
Web程序 时间:
2014-04-27 23:22:09
阅读次数:
679