上一页 1 2 3 4 5 6 7 ··· 15 下一页
摘要: package cn.edu.tju.se; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; imp 阅读全文
posted @ 2019-08-18 09:24 LandingGuys 阅读(1669) 评论(0) 推荐(0) 编辑
摘要: 从git上下载一个springboot 项目要如何打包运行 1. 安装java环境,网上就有教程,注意一点是java9 没有jre 所以如果安装java9 运行该项目可能会缺少某些东西 2. 安装MVN ,网上也有教程 3. 在该项目代码目录下 如下,mvn package 注意如果项目编译错误会无 阅读全文
posted @ 2019-07-29 15:28 LandingGuys 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 背景 利用 luojiangtao 这位大神https://github.com/luojiangtao/ChatBot_web 的代码,灵感来源http://www.shareditor.com/blogshow?blogId=118 一个lstm单元让聊天机器人学会甄嬛体。 以鲁迅先生的狂人日志 阅读全文
posted @ 2019-07-18 18:39 LandingGuys 阅读(386) 评论(0) 推荐(0) 编辑
摘要: 包下载地址http://www.trustice.com/java/jnireg/index.shtml 阅读全文
posted @ 2019-06-01 18:04 LandingGuys 阅读(778) 评论(0) 推荐(0) 编辑
摘要: Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words. For 阅读全文
posted @ 2018-12-04 19:28 LandingGuys 阅读(169) 评论(0) 推荐(0) 编辑
摘要: -参考 《深入理解JAVA 虚拟机》 https://blog.csdn.net/weixin_42157147/article/details/80416745 过程:(按照执行顺序) Integer t=new Integer(5); 一、.检查执行参数 是否能在常量池定位到一个类的符号引用,检 阅读全文
posted @ 2018-12-04 09:58 LandingGuys 阅读(656) 评论(0) 推荐(0) 编辑
摘要: 19. Remove Nth Node From End of List minimum-depth-of-binary-tree Given a binary tree, find its minimum depth.The minimum depth is the number of nodes 阅读全文
posted @ 2018-12-02 13:19 LandingGuys 阅读(116) 评论(0) 推荐(0) 编辑
摘要: https://www.luogu.org/problemnew/show/P1080 题目描述 恰逢 HH国国庆,国王邀请nn 位大臣来玩一个有奖游戏。首先,他让每个大臣在左、右手上面分别写下一个整数,国王自己也在左、右手上各写一个整数。然后,让这 nn 位大臣排成一排,国王站在队伍的最前面。排好 阅读全文
posted @ 2018-11-02 17:30 LandingGuys 阅读(322) 评论(0) 推荐(0) 编辑
摘要: http://codeforces.com/contest/1065/problem/C 真的水,题目水,我也水。最终只能用暴力ac掉 刚开始突发奇想从下面往上面考虑,但其实这样是与题目做法不是完全一致的。所以还是模拟好了 https://www.luogu.org/problemnew/show/ 阅读全文
posted @ 2018-10-13 18:13 LandingGuys 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 题目http://codeforces.com/problemset/problem/1059/E 参考http://www.cnblogs.com/waldenlake/p/9750249.html 我也想到了贪心,从一个子叶a出发向上每一个都标记直至不满足条件,但其实一个点是可以被重复标记的vi 阅读全文
posted @ 2018-10-12 19:09 LandingGuys 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 15 下一页