- 博客(10)
- 资源 (3)
- 收藏
- 关注
原创 Java技术面总结-持续更新中
菜鸟计划---记录Java学习之路---技术面试需要掌握的知识点总结https://github.com/553899811/NewBie-Plan欢迎各位提出建设性意见和帮助.主要针对于现阶段Java开发工程师开启的学习推荐和辅助,主要会从Java基础(IO,Collection集合,反射,多态),MySQL,多线程,JVM,操作系统,计算机网络及部分高级应用等方面做较为详细的学习探究。 ...
2018-05-02 15:52:02 258
原创 Java多线程系列--“基础篇”01之 基本概念
线程状态图 :线程一共包括5种状态:五种状态分别是新建状态(New) , 就绪状态(Runnable) , 运行状态(Running) , 阻塞状态(Blocked) , 死亡状态(Dead). 新建状态(New) 线程对象被创建后,就进入了新建状态。例如,Thread thread = new Thread()。 就绪状态(Runnable) 也被称为”可执行状态”。线程对象被创建后,其它线
2018-01-03 22:06:17 182
原创 51NOD-1018 排序
给出N个整数,对着N个整数进行排序 Input 第1行:整数的数量N(1 <= N <= 50000) 第2 - N + 1行:待排序的整数(-10^9 Output 共n行,按照递增序输出排序好的数据。 Input示例 5 5 4 3 2 1 Output示例 1 2 3 4 5 快速排序: #include using na
2017-10-19 21:54:03 198
原创 51NOD-1011 最大公约数GCD
输入2个正整数A,B,求A与B的最大公约数。 Input 2个数A,B,中间用空格隔开。(1 Output 输出A与B的最大公约数。 Input示例 30 105 Output示例 15 C++代码: #include using namespace std; typedef long long ll; inline ll
2017-10-08 23:42:56 216
原创 LintCode-454.Rectangle Area
URL: http://www.lintcode.com/en/problem/rectangle-area/ Implement a Rectangle class which include the following attributes and methods: Two public attributes width and height.A constructor whi
2017-10-05 18:21:04 169
原创 LintCode-452.Remove Linked List Elements
URL:http://www.lintcode.com/en/problem/remove-linked-list-elements/ Remove all elements from a linked list of integers that have value val. Example Given 1->2->3->3->4->5->3, val = 3, you sho
2017-10-05 11:21:59 185
原创 LintCode-632.Binary Tree Maximum Node
URL:http://www.lintcode.com/en/problem/binary-tree-maximum-node/ public class Solution { /* class TreeNode { TreeNode l, r; int val; }*/ TreeNode maxNode(TreeNode
2017-08-29 11:56:31 328
原创 Project Euler #2: Even Fibonacci numbers
URL :点击打开题目 This problem is a programming version of Problem 2 from projecteuler.net import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.Print
2017-07-10 22:33:13 252
原创 Project Euler #1: Multiples of 3 and 5
题目链接:点击打开原题目 This problem is a programming version of Problem 1 from projecteuler.net If we list all the natural numbers below that are multiples of or , we get and . The su
2017-03-27 10:53:44 424
阿里巴巴Java开发手册(终极版)
2017-09-25
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人