目录

程序员子悠 · 好记性不如烂笔头

技术人生 X 人生技术

存档: 2018 年 12 月 (3)

2018年终总结

2018 年终总结 ​ 2018年即将过去,一年的时间过的是如此的快,回顾自己这一年,无论是工作还是自身的学习都有很大的进步。 工作回顾 ​ 今年是自己工作的第三年,相对于前两年来说,今年的工作的更加得心应手,因为大部分功能自己都参与重构或者构建完成的;而且今年跟业务的接触更加频繁,很多地方都有了更深层次的认识。以前可能只会关注自己代码写的怎么样,功能是否能完成,现在考虑的更多的是为什么要这么做,更多的从业务的层面上去思考去理解。 ​ 技术都是为了业务服务的,在没有业务场景的前提下,技术再厉害也没有发挥的余地。 ​ 这一年也由于对业务更加熟悉了,对接的人也变多了,不管是业务人员,测试人员还是其他人,遇到问题的时候感觉都会习惯性的找到我,让我帮他们排查问题。加上我这个人本身不怎么会拒绝,往往很多时候会被这些琐事压住,事情本身并不复杂,解决起来也很简单,只能说繁琐,往往自己的事情还需要晚上加班处理。但是从另一个方面来说,责任越大,担子越大,想想为什么他们不去找其他人呢?在自己力所能及的范围里面能帮助到别人还是很开心的。 个人成长 ​ 这一年最大的收获是接触到了很多优秀的人,有强哥的纯洁的微....

The 16th Week of ARTS:Sliding Window Maximum_239

Introduction Algorithm - Learning Algorithm Review - Learning English Tip - Learning Techniques Share - Learning Influence Let's do it!!! Algorithm Sliding Window Maximum Description Given an array nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the k numbers in the window. Each time the sliding window moves right by one position. Return the max sliding window. My Solution package com.silence.arts.leetcode.stack; impor....

The 15th Week of ARTS:KthLargest Element in a Stream_703

Introduction Algorithm - Learning Algorithm Review - Learning English Tip - Learning Techniques Share - Learning Influence Let's do it!!! Algorithm KthLargest Element in a Stream Description Design a class to find the kth largest element in a stream. Note that it is the kth largest element in the sorted order, not the kth distinct element. Your KthLargest class will have a constructor which accepts an integer k and an integer array nums, which contains initial elements from the stream. For each ....