1.springboot官方文档地址:https://spring.io/guides/gs/spring-boot/ 2.使用Eclipse 2-1:右键—New—Other 2-2:搜索Maven project 2-3:根据官方文档把依赖拷贝到pom文件中 如果项目报错,右键项目—Maven— ...
分类:
编程语言 时间:
2019-02-19 00:49:56
阅读次数:
238
Redundant Paths 题目链接:http://poj.org/problem?id=3177 Description: In order to get from one of the F (1 <= F <= 5,000) grazing fields (which are numbere ...
分类:
其他好文 时间:
2019-02-18 01:10:05
阅读次数:
210
ConcurrentHashMap是线程安全的。可以在多线程中对ConcurrentHashMap进行操作。 在jdk1.7中,使用的是锁分段技术Segment。数据结构是数组+链表。 对比jdk1.7,在jdk1.8中,ConcurrentHashMap主要使用了CAS(compareAndSwa ...
分类:
编程语言 时间:
2019-02-17 22:21:04
阅读次数:
165
PyPI for Python 3.7 https://docs.python.org/3.7/library/datetime.html timedelta Object https://docs.python.org/3.7/library/datetime.html timedelta obj ...
分类:
其他好文 时间:
2019-02-17 14:18:26
阅读次数:
230
Y2K Accounting Bug Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8282 Accepted: 4106 Description Accounting for Computer Machinists (ACM) ...
分类:
其他好文 时间:
2019-02-16 15:28:22
阅读次数:
161
【本地代码回退】 git reset --hard commit-id :回滚到commit-id,讲commit-id之后提交的commit都去除 git reset --hard HEAD~3:将最近3次的提交回滚 这两个操作只是把commit回退,再次push还是回到原位。所以需要同步reba ...
分类:
其他好文 时间:
2019-02-15 15:26:34
阅读次数:
182
单词替换 在英语中,我们有一个叫做词根(root)的概念,它可以跟着其他一些词组成另一个较长的单词——我们称这个词为继承词(successor)。例如,词根an,跟随着单词other(其他),可以形成新的单词another(另一个)。 现在,给定一个由许多词根组成的词典和一个句子。你需要将句子中的所... ...
分类:
其他好文 时间:
2019-02-15 14:00:45
阅读次数:
191
Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while the others are n ...
分类:
其他好文 时间:
2019-02-14 15:05:23
阅读次数:
168
Teen Girl Squad Description: You are part of a group of n teenage girls armed with cellphones. You have some news you want to tell everyone in the gro ...
分类:
其他好文 时间:
2019-02-14 00:09:57
阅读次数:
156
.NETCore一些初级问题 1、如何执行.NETCore命令行程序? 如:项目路径为 I:\OtherSoure\VS2017\ConsoleApp1 则在VS2017 TOOLS\VS 2017的开发人员命令提示符工具中输入以下命令: dotnet run -p I:\OtherSoure\VS ...
分类:
Web程序 时间:
2019-02-14 00:08:05
阅读次数:
229