上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: 例如我想增加 http://localhost:9000/hello 首先为Application.java新增一个方法 之后在/app/views/Application下新增hello.html文件 最后配置conf/routes新增GET /hello Application.hello 之后 阅读全文
posted @ 2019-03-14 14:43 晓风微微 阅读(148) 评论(0) 推荐(1) 编辑
摘要: mainwindow新建方法MainWindowOpen打开一个新的对话框 之后在main.cpp中使用QObject::connect()使用信号量链接起来 效果 如果有设置对话框的父控件,则对话框出现在父控件的中心位置 QDialog::exec()实现应用程序级别的对话框——当对话框出现时,我 阅读全文
posted @ 2019-03-12 23:40 晓风微微 阅读(367) 评论(0) 推荐(1) 编辑
摘要: QDialog 对话框 QLabel 标签 Code: 阅读全文
posted @ 2019-03-12 23:28 晓风微微 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-12-04 14:18 晓风微微 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 7 using namespace std; 8 char *s1="jpg"; 9 char *s2="png"; 10 char *s3="bmp"; 11 /*************************** 12 * 函数功能: 遍历文件夹... 阅读全文
posted @ 2018-10-23 19:40 晓风微微 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 问题 E: 暴力DP根据题意可推出四种状态:1.当上一个音符和当前音符都不为-1时,可得到dp[i][a[i]]=dp[i-1][a[i-1]]+score[a[i-1]][a[i]];2.当上一个音符为-1,当前音符不为-1时,可得到dp[i][a[i]]=max(dp[i][a[i]],dp[i 阅读全文
posted @ 2018-10-15 13:15 晓风微微 阅读(526) 评论(0) 推荐(0) 编辑
摘要: In the year of 30XX30XX participants of some world programming championship live in a single large hotel. The hotel has nn floors. Each floor has mm s 阅读全文
posted @ 2018-04-30 10:51 晓风微微 阅读(495) 评论(0) 推荐(0) 编辑
摘要: Wasserstein Distance 链接:https://www.nowcoder.com/acm/contest/91/A来源:牛客网 题目描述 最近对抗生成网络(GAN)很火,其中有一种变体WGAN,引入了一种新的距离来提高生成图片的质量。这个距离就是Wasserstein距离,又名铲土距 阅读全文
posted @ 2018-04-15 17:03 晓风微微 阅读(354) 评论(0) 推荐(0) 编辑
摘要: time limit per test 2.5 seconds memory limit per test 256 megabytes input standard input output standard output The stardate is 1983, and Princess Hei 阅读全文
posted @ 2018-04-14 21:05 晓风微微 阅读(264) 评论(0) 推荐(0) 编辑
摘要: Given initially empty stacks, there are three types of operations: 1 s v: Push the value onto the top of the -th stack. 2 s: Pop the topmost value out 阅读全文
posted @ 2018-04-13 12:12 晓风微微 阅读(334) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页