力导向 (Force-directed) 布局算法

发布于 2018-12-10

数据: 0 1 1;0 2 1;0 3 1;0 4 1;1 5 1;1 6 1;1 7 1;1 8 1;2 9 1;2 10 1;2 11 1;2 12 1;3 13 1;3 14 1;3 15 1;3 16 1;4 17 1;4 18 1;4 19 1;4 20 1 (';'为换行...


c++ 编码间互相转换

发布于 2018-09-01

参考网站 void unicodeToUTF8(const wstring &src, string& result) { int n = WideCharToMultiByte( CP_UTF8, 0, src.c_str(), -1, 0, 0, 0, 0 ); ...


Reversing.Kr练习

发布于 2018-08-01

Easy Crack Download 先运行一下程序,随便输入一些东西 得到了特殊字符串"Incorrect Password" 用PEID查壳 显示没有加壳 用IDA Pro进行分析 先Sh...


课设五子棋(联机版)

发布于 2018-07-06

服务端代码 dataNode.h #pragma once #include using std::string; struct dataNode { // 数据包结构 int x, y; // 坐标 int per; // 前一个棋...


A*寻路算法

发布于 2018-06-05

参考博客 A星算法详解 英文详解 代码部分(之前的那个有点问题) #include #include #include #include #include #include using namespace ...


AC自动机

发布于 2018-05-27

代码 #include #include using namespace std; const int maxn = 26; struct node{ // 字典树节点 int cnt; node *fail; // 失配指针 ...


js实现大数加法

发布于 2018-05-19

测试网址 html部分 textarea{width: 100%; background: lightgoldenrodyellow; font-size: 25px; overflow: auto; word-break: break-al...


kmp匹配算法

发布于 2018-05-13

参考网站 代码 #include #include using namespace std; int next[101]; void getNext(string str){ // 获取前缀表部分 string tmp = ""; ...


校oj 第二届程序设计大赛 Harry的魔法课

发布于 2018-05-09

题目链接 需要连接校园网 Description 魔法课上Harry碰到了一点小麻烦,因为他并不像Hermione那样能够记住所有的咒语而随意的将一个棒球变成刺猬什么的,但是...