摘要:
学习论文: 题目:Two-step quantum direct communication protocol using the Einstein-Podolsky-Rosen pair block 作者:Fu-Guo Deng,Gui Lu Long and Xiao-Shu Liu 原文 摘要 阅读全文
摘要:
学习论文: 题目:Solving the liar detection problem using the four-qubit singlet state 作者:Ad´an Cabelloc 首先,先了解一下拜占庭问题 原文 拜占庭问题 问题由来? 拜占庭位于如今的土耳其的伊斯坦布尔,是东罗马帝国 阅读全文
摘要:
求A mod B 要求 B必须是2的次方 方法 A mod B = A & (B - 1) 程序 #include <stdio.h> //10 mod 8 = 2 int addM(int a,int b) { return a & (b-1); // mod(2^31-1) } int main 阅读全文