2018年2月3日

ZOJ Problem Set - 1004 - Anagrams by Stack

摘要: import java.util.Scanner; public class Main { private static char[] solution = new char[200]; private static char[] s = new char[200]; private static String source; private static St... 阅读全文

posted @ 2018-02-03 22:02 NEU-2015 阅读(126) 评论(0) 推荐(0) 编辑

2018年1月13日

原生态的JDBC代码

摘要: public static void main(String[] args) { Connection connection = null; PreparedStatement preparedStatement = null; ResultSet resultSet = null; ... 阅读全文

posted @ 2018-01-13 20:02 NEU-2015 阅读(195) 评论(0) 推荐(0) 编辑

2017年12月25日

浙江大学ACM1003题解-java

摘要: 参考博客:http://blog.csdn.net/jayfer/article/details/1783649 阅读全文

posted @ 2017-12-25 13:14 NEU-2015 阅读(578) 评论(0) 推荐(0) 编辑

2017年12月24日

浙江大学1002题解-java

摘要: import java.util.Scanner; public class Main { private static int n; private static int max; private static Character[][] cs; public static void main(String[] args) { Sca... 阅读全文

posted @ 2017-12-24 20:25 NEU-2015 阅读(213) 评论(0) 推荐(0) 编辑

2017年12月9日

hadoop虚拟机安装步骤

摘要: 推荐笔记:https://note.youdao.com/share/?id=ee224ffa5dd6b4db4b13eb9285b096ba&type=note#/ 以下为本人计算机具体操作内容及截屏。 刚开始在本机windows上安装hadoop,但是网址localhost:8088和local 阅读全文

posted @ 2017-12-09 10:50 NEU-2015 阅读(1418) 评论(0) 推荐(0) 编辑

2017年11月28日

机器学习三种算法基础介绍

摘要: 微信公众号 https://mp.weixin.qq.com/s?__biz=MjM5MDI1ODUyMA==&mid=2672939690&idx=2&sn=f2eb9014a867286e9ab94d9f99ca1657&chksm=bce2f69d8b957f8b9b7c565b2ae502d 阅读全文

posted @ 2017-11-28 13:22 NEU-2015 阅读(200) 评论(0) 推荐(0) 编辑

2017年11月18日

递归多线程实现前缀和

摘要: http://blog.csdn.net/qq_21361539/article/details/51577263 阅读全文

posted @ 2017-11-18 19:10 NEU-2015 阅读(471) 评论(0) 推荐(0) 编辑

2017年10月16日

Linux基础操作

摘要: 一、文件系统的管理 tips:输入命令的时候要常用tab键来补全 ls 查看目录信息 ( ls / ) ls -l 等价于 ll 以长格式的形式查看当前目录下所有可见文件的详细属性. ll -a 显示隐藏文件 ll --help 常用参数查询 pwd ... 阅读全文

posted @ 2017-10-16 18:56 NEU-2015 阅读(191) 评论(0) 推荐(0) 编辑

2017年10月3日

java-生成1~n的序列

摘要: 2.生成可重集的排列 阅读全文

posted @ 2017-10-03 20:50 NEU-2015 阅读(2849) 评论(0) 推荐(0) 编辑

java-分数拆分

摘要: 问题描述:输入正整数k,找到所有的正整数x>=y,使得1/k = 1/ x + 1/y. 样例输入: 2 输出 1/2=1/6+1/3 1/2=1/4+1/4 12 输出 1/12=1/156+1/13 1/12=1/84+1/14 1/12=1/60+1/15 1/12=1/48+1/16 1/1 阅读全文

posted @ 2017-10-03 10:25 NEU-2015 阅读(681) 评论(0) 推荐(0) 编辑

导航