$ + $ $ = $ ? Ah~ ``10636`` ...
分类:
其他好文 时间:
2018-05-01 12:30:56
阅读次数:
87
背景 最近一直学习写一个POC扫描框架,但是不知道如何下手,正巧因为一些需要有朋友在研究POCSuite的实现原理,顺面蹭一些知识点,补一补Python基础的不足,为以后编写POC框架打地基。 导入 静态模块导入 以上都是常见的静态导入方法 ...
分类:
编程语言 时间:
2018-04-27 15:44:09
阅读次数:
186
Description: Goldbach's conjecture is one of the oldest and best-known unsolved problems in number theory and all of mathematics. It states: Every eve ...
分类:
编程语言 时间:
2018-04-24 00:16:35
阅读次数:
261
题目链接:http://acm.csu.edu.cn/csuoj/problemset/problem?pid=2021 Description Everybody loves big numbers (if you do not, you might want to stop reading at ...
分类:
其他好文 时间:
2018-04-18 21:54:29
阅读次数:
163
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
分类:
其他好文 时间:
2018-04-15 12:12:01
阅读次数:
150
int quick(int a,int b,int c){ int ans = 1; a = a%c; while(b>0){ if(b%2==1)ans=(ans*a)%c;//状态迭代 b= b/2; a = (a*a)%c; } return ans; } int power(int a, i... ...
分类:
其他好文 时间:
2018-04-06 19:32:02
阅读次数:
171
1997: Seating Arrangement Description Mr. Teacher老师班上一共有n个同学,编号为1到n。 在上课的时候Mr. Teacher要求同学们从左至右按1,?2,?…,?n的顺序坐成一排,这样每个同学的位置是固定的,谁没来上课就一目了然了。 但是时间长了之后, ...
分类:
其他好文 时间:
2018-04-04 23:13:06
阅读次数:
261
第三次Scrum冲刺————Life in CCSU 一、第三次Scrum任务 小组GitHub地址链接:https://github.com/LoneylittleTeam/Team 个人GitHub地址链接:https://github.com/15116340325/FirstScrum 继续 ...
分类:
其他好文 时间:
2018-03-22 00:27:03
阅读次数:
121
int quick(int a,int b,int c) { int ans=1; //记录结果 a=a%c; //预处理,使得a处于c的数据范围之下 while(b!=0) { if(b&1) ans=(ans*a)%c; //如果b的二进制位不是0,那么我们的结果是要参与运算的 b>>=1; / ...
分类:
其他好文 时间:
2018-02-12 11:20:52
阅读次数:
90
卡特兰数有关的问题,大都满足这样一个描述:有一个大问题A,规模为n,要解决这个问题,可以用分治的思想,首先固定其中某一个元素,将剩下的n-1个元素拆分成两个小问题,这两个小问题的规模分别是(0,n-1) (1,n-2) (2,n-3) ... (n-1,0) 举几个例子:1. 二叉树计数,n个结点的 ...
分类:
其他好文 时间:
2018-02-05 18:55:44
阅读次数:
190