会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
gendlee1991
博客园
首页
新随笔
联系
订阅
管理
随笔 - 85
文章 - 0
评论 - 0
阅读 -
2617
2020年3月30日
0085 java面试高频问题汇总
摘要: Java基础:1.JDK 和 JRE 有什么...
阅读全文
posted @ 2020-03-30 22:15 gendlee1991
阅读(26)
评论(0)
推荐(0)
2020年1月21日
0084 如何写一个flink程序
摘要: 如何写一个flink程序step 1: 环...
阅读全文
posted @ 2020-01-21 14:24 gendlee1991
阅读(25)
评论(0)
推荐(0)
2019年11月2日
0083 不用比较元素大小也能排序——计数排序算法实现与分析
摘要: package sort;public class CountSorting { public static void countSort(int[] nums){ if (null == n...
阅读全文
posted @ 2019-11-02 14:26 gendlee1991
阅读(15)
评论(0)
推荐(0)
2019年10月29日
0082 分治法实现归并排序
摘要: package sort;public class MergeSorting { public static void mergeSort(int[] nums, int start, int end){ ...
阅读全文
posted @ 2019-10-29 21:10 gendlee1991
阅读(17)
评论(0)
推荐(0)
0081 插入排序简单分析
摘要: package sort;public class InsertSorting { public static void insertSort(int[] nums){ if (null ==...
阅读全文
posted @ 2019-10-29 20:06 gendlee1991
阅读(13)
评论(0)
推荐(0)
2019年10月28日
0080 分治法思想下的快速排序算法
摘要: public class QuickSorting { public static void quickSort(int[] nums, int start, int end){ if (st...
阅读全文
posted @ 2019-10-28 20:56 gendlee1991
阅读(15)
评论(0)
推荐(0)
0079 选择排序的“丑陋”
摘要: public class SelectSorting { public static void selectSort(int[] nums){ if (null == nums || nums...
阅读全文
posted @ 2019-10-28 20:19 gendlee1991
阅读(16)
评论(0)
推荐(0)
0078 冒泡排序算法分析
摘要: //假设升序排序public class BubbleSorting { public static void bubbleSort(int[] nums){ if (null == nums...
阅读全文
posted @ 2019-10-28 19:56 gendlee1991
阅读(14)
评论(0)
推荐(0)
2019年8月31日
0077 LeetCode(力扣)解题录
摘要: 771. 宝石与石头class Solution { public int numJewelsInStones(String J, String S) { int count = 0; ...
阅读全文
posted @ 2019-08-31 23:38 gendlee1991
阅读(18)
评论(0)
推荐(0)
2019年4月14日
0076 人工智能系列——机器学习专家的知识技能图谱
摘要: 引言 在人工智能的风口浪尖上,作为一名新时代程序员应具备前瞻性的技术自我修养,其中最为核心的,当属深度学习的理论与技能。一位搞社会科学的专家曾给过我建议:要打造自己的核心竞争力。随着不断的工作深入,...
阅读全文
posted @ 2019-04-14 12:46 gendlee1991
阅读(45)
评论(0)
推荐(0)
下一页
公告
昵称:
gendlee1991
园龄:
5年2个月
粉丝:
0
关注:
0
+加关注
<
2025年6月
>
日
一
二
三
四
五
六
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
随笔档案
2020年3月(1)
2020年1月(1)
2019年11月(1)
2019年10月(5)
2019年8月(1)
2019年4月(3)
2017年12月(1)
2017年10月(2)
2017年9月(2)
2017年2月(1)
2016年12月(1)
2016年11月(3)
2016年10月(1)
2016年9月(3)
2016年8月(5)
2016年7月(3)
2016年6月(2)
2016年5月(4)
2016年4月(13)
2016年3月(2)
2016年2月(1)
2015年12月(4)
2015年11月(12)
2015年10月(9)
2015年3月(3)
更多
阅读排行榜
1. 0060 如何看懂ping命令的显示结果(220)
2. 0069 drools workbench 在wildfly上的搭建(182)
3. 0070 IntelliJ IDEA+Scala+Hadoop +Spark的开发环境搭建(121)
4. 0074 Pycharm破解方法(96)
5. 0075 python数据处理——Excel中数据均值与均方差计算(83)
点击右上角即可分享