JAVA课程设计 一、团队介绍 二、项目git地址 https://gitee.com/ZhangRongBo/online_examination_system 三、项目git提交记录截图 四、项目结构功能图与主要功能结构图 项目结构功能图: 主要功能结构图: 五、项目运行截图 1.学生登录界面 ...
分类:
编程语言 时间:
2019-01-17 10:54:58
阅读次数:
197
题目:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3754 高斯消元好像时间复杂度太高。 注意到每个位置都可以从 dp[ 0 ] 转移过来,所以可以想到每个 dp[ i ] 都可以表示成 a[ i ]*dp[ 0 ] + b[ ...
分类:
其他好文 时间:
2019-01-16 20:41:32
阅读次数:
175
1.百度的语音合成 具体配置参考 http://ai.baidu.com/docs#/TTS-Online-Python-SDK/top 2.百度的语音识别 具体配置参考 http://ai.baidu.com/docs#/ASR-Online-Python-SDK/top 3.两个结合 4.图灵机 ...
分类:
其他好文 时间:
2019-01-15 21:07:44
阅读次数:
187
原文链接地址:http://seanlook.com/2016/05/24/mysql-online-ddl-concept/ 做MySQL的都知道,数据库操作里面,DDL操作(比如CREATE,DROP,ALTER等)代价是非常高的,特别是在单表上千万的情况下,加个索引或改个列类型,就有可能堵塞整 ...
分类:
数据库 时间:
2019-01-15 16:58:18
阅读次数:
235
http://flowchart.js.org/ http://webchart.ihuhai.cn/flow.html https://mermaidjs.github.io/ ...
分类:
其他好文 时间:
2019-01-15 00:48:05
阅读次数:
189
Description 给定 $n$ 个点的带边权树,求一条异或和最大的简单路径 Input 第一行是点数 $n$ 下面 $n 1$ 行每行三个整数描述这棵树 Output 输出一个数代表答案 Hint $1~\leq~n~\leq~10^5~,~1~\leq~w~ include ifdef ON ...
分类:
其他好文 时间:
2019-01-14 22:02:52
阅读次数:
180
Runtime: 52 ms, faster than 97.21% of Python online submissions forFlipping an Image. 1.0和1取反,可以使用异或1 2.可以直接对原来的list进行操作,省的重新定义list ...
分类:
其他好文 时间:
2019-01-13 22:48:27
阅读次数:
267
题目地址 "题目链接" 题解 这题很有意思啊qwq。本来是写算出每个数的质约数的,然后写到一半发现,质约数互相不影响,有质约数的数肯定是合数。 所以合数染一种色,质数染一种色就好 include include include include include using namespace std; ...
分类:
其他好文 时间:
2019-01-12 18:06:16
阅读次数:
162
客户端代码: 服务端代码: 参考:JavaNIO和零拷贝(Zero Copy) https://www.linuxtopia.org/online_books/programming_books/thinking_in_java/TIJ314_029.htm ...
分类:
编程语言 时间:
2019-01-11 17:16:50
阅读次数:
224
Let's play the minesweeper game (Wikipedia, online game)! You are given a 2D char matrix representing the game board. 'M' represents an unrevealed min ...
分类:
其他好文 时间:
2019-01-11 15:58:03
阅读次数:
147