上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: centos6.9 jdk 1.8.0 tomcat 8 mysql 5.7 1、centos 6.9 "下载地址" 学长推荐centos 6。 下载的时候,网易的镜像站 http://mirrors.163.com/ 因为在虚拟机中安装,选择的是 CentOS 6.9 i386 bin DVD1. 阅读全文
posted @ 2017-05-08 12:32 unicoe 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 系列文章:https://github.com/ty4z2008/Qix/blob/master/dl.md 原文链接https://medium.com/code-poet/80ea3ec3c471 梯子今天不好用,先不调了,看中文http://blog.jobbole.com/67616/ 两类 阅读全文
posted @ 2017-04-11 08:26 unicoe 阅读(147) 评论(0) 推荐(0) 编辑
摘要: python中 " " 和 ' ' 的地位相同 list [] tuple () dict {} 条件控制 if - elif - else 循环 while - else for in - else 迭代器 迭代是Python最强大的功能之一,是访问集合元素的一种方式。。 迭代器是一个可以记住遍历 阅读全文
posted @ 2017-04-06 22:59 unicoe 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 1.安装mysql 命令 # wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm --no-check-certificate #rpm -ivh mysql-community-release-el7-5.n 阅读全文
posted @ 2017-04-01 22:46 unicoe 阅读(433) 评论(0) 推荐(0) 编辑
摘要: root‘s password : unicoe 临时关闭防火墙: 命令:/etc/init.d/iptables stop 出现三个OK,关闭成功,此时防火墙已经关闭,不许重启已经生效。 命令: /etc/init.d/iptables status 关闭后查看状态,应该显示 firewall i 阅读全文
posted @ 2017-04-01 17:20 unicoe 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 2017年3月30日23:17:41 http://www.erogol.com/brief-history-machine-learning/ lanes n. 线路,跑道(lane复数形式) spicy adj. 辛辣的;香的,多香料的;下流的 propel vt. 推进;驱使;激励;驱策 pr 阅读全文
posted @ 2017-03-30 23:59 unicoe 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 当前开发主要是 spring + mybatis 先 model,再Dto,然后 定义 model 对应的service 接口, 定义model对应的mapper接口,实现 service接口, 实现 mapper,做成对应的 XX.xml,最后实现单元测试 阅读全文
posted @ 2017-03-30 08:55 unicoe 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 2017年3月29日19:20:42 github 用 intellij idea提交搞定 先 commit 后 push User & Problem 的 service -- mapper debug 搞定 -> Code & CompileInfo & Language & ContestUs 阅读全文
posted @ 2017-03-29 19:23 unicoe 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 2017年3月29日15:50:45 Exception encountered during context initialization - cancelling refresh attemptorg.springframework.beans.factory.BeanCreationExcep 阅读全文
posted @ 2017-03-29 15:51 unicoe 阅读(771) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <stdio.h> 3 #include <string.h> 4 using namespace std; 5 6 int main() 7 { 8 int k, r, i; 9 scanf("%d %d", &k, &r); 10 阅读全文
posted @ 2016-12-06 10:27 unicoe 阅读(128) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #define INF 32767 typedef struct MGraph{ char vertexs[10]; int edge[10][10]; int ver_num, edge_num; }MGraph; void create_graph(MGra 阅读全文
posted @ 2016-11-20 18:03 unicoe 阅读(224) 评论(0) 推荐(0) 编辑
摘要: /** #include #include int max(int n1, int n2) { return (n1 > n2) ? n1 : n2; } int main() { int a, b, c; if(a == max(a, b)) { if(a == max(a, c)) printf("%d\n", ... 阅读全文
posted @ 2016-10-13 17:31 unicoe 阅读(234) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; class Node { public: int data; Node *next; }; class LinkList { public: LinkList(); ~LinkList(); void CreateLi 阅读全文
posted @ 2016-09-02 09:52 unicoe 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 2019-04-30 17:11:12 重新拿c++实现了一下 一下两个版本部分代码存在问题,请忽略 更新一些代码 1 ///练练练 2 #include <stdio.h> 3 #include <stdlib.h> 4 typedef char Telemtype; 5 typedef stru 阅读全文
posted @ 2016-08-29 20:24 unicoe 阅读(787) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-08-05 20:19 unicoe 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 最近忙着考研复习,所以刷题少了。。 数据结构昨天重新学习了一下KMP算法,今天自己试着写了写,问题还不少,不过KMP算法总归是理解了,以前看v_JULY_v的博客,一头雾水,现在终于懂了他为什么要在算完next[]之后,所有值都减一了。。。。。。 为了顺便复习下C语言,就没有用C++写,而且写出来比 阅读全文
posted @ 2016-07-13 17:10 unicoe 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 实例: 结果: 阅读全文
posted @ 2016-05-19 19:29 unicoe 阅读(1429) 评论(0) 推荐(0) 编辑
摘要: B. Making a String time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You are given an alpha 阅读全文
posted @ 2016-05-05 13:07 unicoe 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 一遍考研,一遍还是要刷刷题。感觉自己的时间安排的不是很好,还是要抓紧自己的日常时间,当然,也要练练刷题的手感。 1.第一题就两重循环找到索引就OK,因为是无序的,所以就不能用二分来查找,题目中每个数的下标是定死的,所以不能排序后再二分。真是太年轻,什么都想试试(4.5) 1 public class 阅读全文
posted @ 2016-04-05 23:45 unicoe 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 课间水一水,CCF备战 阅读全文
posted @ 2016-04-05 11:03 unicoe 阅读(140) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页