Recuva:**Recuva(pronounced“recover”)isafreewareWindowsutilitytorestorefilesthathavebeenaccidentallydeletedfromyourcomputer.UsingRecuva,youcanrestorefilesthathavebeenaccidentallydeletedfromthecomputer,
分类:
其他好文 时间:
2018-09-16 19:37:53
阅读次数:
152
Jessie has a magic mirror. Every morning she will ask the mirror: 'Mirror mirror tell me, who is the most beautiful girl in the world?' If the mirror ...
分类:
其他好文 时间:
2018-09-15 20:00:54
阅读次数:
399
题目背景 在成功地发明了魔方之后,鲁比克先生发明了它的二维版本,称作魔板。这是一张有8个大小相同的格子的魔板: 1 2 3 4 8 7 6 5 题目描述 我们知道魔板的每一个方格都有一种颜色。这8种颜色用前8个正整数来表示。可以用颜色的序列来表示一种魔板状态,规定从魔板的左上角开始,沿顺时针方向依次 ...
分类:
其他好文 时间:
2018-09-15 10:09:14
阅读次数:
149
貌似没什么用。。。没有多少毒瘤题要输出分数吧。。。 可以套个兼容性比较好的高精度模板进来。 cpp include using namespace std; namespace FlashHu{ define RG register define I inline define R RG frac ...
分类:
编程语言 时间:
2018-09-13 20:19:39
阅读次数:
208
OpenDanmaku https://github.com/linsea/OpenDanmaku AndroidViewAnimations https://github.com/daimajia/AndroidViewAnimations Material-Animations https:// ...
分类:
移动开发 时间:
2018-09-12 18:09:10
阅读次数:
232
一、迁移说明 ABP模板项目Entity Framework Core默认使用的是Sql Server,也很容易将数据库迁移到MySQL,步骤如下。 二、迁移MySQL步骤 1、 下载项目 请到 http://aspnetboilerplate.com/Templates 下载一个新的项目,选择AS ...
分类:
数据库 时间:
2018-09-12 10:10:07
阅读次数:
174
【1】Two Sum 【4】Median of Two Sorted Arrays 【11】Container With Most Water 【15】3Sum 【16】3Sum Closest 【18】4Sum 【26】Remove Duplicates from Sorted Array 【27 ...
分类:
编程语言 时间:
2018-09-08 23:34:39
阅读次数:
452
题目: A 3 x 3 magic square is a 3 x 3 grid filled with distinct numbers from 1 to 9 such that each row, column, and both diagonals all have the same sum ...
分类:
其他好文 时间:
2018-09-08 14:12:53
阅读次数:
134
php 程序既可以通过浏览器来访问(一般是 apache、nginx等服务器), 也可以通过命令行来直接运行(cli 执行) 如果需要判断 当前程序是以何种方式来执行,应该怎样判断呢,使用:php_sapi_name() 方法, 示例: 参考:http://php.net/manual/en/fun ...
分类:
Web程序 时间:
2018-09-06 03:02:22
阅读次数:
526
题意: 有向图,可以把k条路的长度变为0,求1到n的最短路 思路: 将图复制k份,一共k+1层图,对于每一条i→j,都连一条低层的i→高层的j,并且权值为0 即对每一对<i,j,w>,都加边<i,j,w>,<i+n,j+n,w>,<i+2n,j+2n,w>,....,<i+kn,j+kn,w> 同时 ...
分类:
其他好文 时间:
2018-09-04 01:44:18
阅读次数:
232