一、线路安全
1. 概念:线路安全,就是对于数据不保密,但要保证数据的完整性和防止被篡改。
2. 方法:在原有的数据基础上,加上8个字节的MAC。
3. 过程:
a. 在外部认证指令中,设定安全级别。如图1....
分类:
编程语言 时间:
2014-07-30 12:13:43
阅读次数:
239
Problem Description
Alice and Bob are playing a game. There are two piles of cards. There are N cards in each pile, and each card has a score. They take turns to pick up the top or bottom card from...
分类:
其他好文 时间:
2014-07-29 15:03:28
阅读次数:
248
#Card.pyimport randomclass Card: def __init__(self,suit_id,rank_id): self.rank_id = rank_id self.suit_id = suit_id if self.ran...
分类:
其他好文 时间:
2014-07-29 11:04:46
阅读次数:
263
java中如何生成可执行的jar文件最简单的方法就是:jar -cfe Card.jar CardLayoutDemo CardLayoutDemo$1.class CardLayoutDemo$myActionListener.class CardLayoutDemo.class myClosin...
分类:
编程语言 时间:
2014-07-27 23:15:49
阅读次数:
167
基数排序又叫卡片排序,这是在比较早的时候用的比较多的排序方法。
在现代计算机出现之前,一直用于老式穿孔卡的排序。
说下基数排序的思想,前面我有写一个桶式排序,基数排序的思想是桶式排序的推广。
桶式排序:http://blog.csdn.net/alps1992/article/details/38132593...
分类:
编程语言 时间:
2014-07-27 11:51:53
阅读次数:
257
1 $ node app.js2 connect.multipart() will be removed in connect 3.03 visithttps://github.com/senchalabs/connect/wiki/Connect-3.0 for alternatives4 con...
分类:
Web程序 时间:
2014-07-27 10:16:22
阅读次数:
246
Game PredictionSuppose there are M people, including you, playing a special card game. At the beginning, each player r...
分类:
其他好文 时间:
2014-07-27 09:44:42
阅读次数:
395
实现洗牌游戏的一种算法是:遍历每个位置上的牌,然后与随机位置上的牌交换。 对于牌来讲,2个关键的因素是面值和类型(红桃、梅花等)。 public class Card { private string mianzhi; private string leixin; public Card(strin...
分类:
其他好文 时间:
2014-07-26 14:52:30
阅读次数:
167
题意:
要求在一个特殊的图上找最大匹配,该图特点是:无向图,每个节点度数为3,是一个边双连通分量(the graph is 2-edge-connected (that is, at least 2 edges need to be removed in order to make the graph disconnected) 这一点是这样理解的把。。)
思路:
一般想法就直接建图求最大匹...
分类:
其他好文 时间:
2014-07-23 13:22:07
阅读次数:
207