上一页 1 2 3 4 5 6 7 ··· 77 下一页
摘要: 【 5/17 HE,题都做出来了,却挂了,为何呢?】第一轮,三哥 Senior Engineer ,BQ 了一会,然后一道coding, 两个数组,返回差值最接近0的pair,最后反bq了一会第二轮,国人 EM, 直接做题,之字形遍历树,药灵散,秒了后,过八股文,过程/线程,stack/heap之类 阅读全文
posted @ 2022-06-19 04:51 苗妙苗 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/liuzhupeng/article/details/106709831 一提到排序我就怕,都是计算机基础没打好留下的坑和泪啊。 阅读全文
posted @ 2022-06-19 04:49 苗妙苗 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 用max heap // use maxHeap. Put entry into maxHeap so we can always poll a number with largest frequency public class Solution { public List<Integer> to 阅读全文
posted @ 2022-05-02 05:52 苗妙苗 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 太麻烦了只好用Backtracking public List<List<Integer>> fourSum(int[] nums, int target) { List<List<Integer>> ans = new ArrayList<List<Integer>>(); if(nums == 阅读全文
posted @ 2022-05-02 05:38 苗妙苗 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.geeksforgeeks.org/print-all-root-to-leaf-paths-of-an-n-ary-tree/ // Java program for the above approach import java.util.ArrayList; cla 阅读全文
posted @ 2022-05-02 03:03 苗妙苗 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 引用https://www.1point3acres.com/bbs/thread-748337-1-1.html 1、死磕。很多code和doc,第一遍看不知所云,就硬着头皮,反复一遍遍地看,然后就会发现竟然开始make sense了。就是量变引起质变。你说每天肝12个小时,其实真的不算啥。在一个 阅读全文
posted @ 2021-12-08 09:50 苗妙苗 阅读(165) 评论(0) 推荐(0) 编辑
摘要: Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or 阅读全文
posted @ 2021-12-04 05:27 苗妙苗 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 一、领导力原则:强调“我个人负责了哪里”,产生了什么影响。就是star呗。但是很重要啊!二、coding:注意写注释、命名的习惯三、网络、os知识:查一下。eg tcp udp之类的。结合工作经验思考,比如header怎么选,命令行打不开了是为啥。四、 trouble shooting:多参加on 阅读全文
posted @ 2021-11-21 02:55 苗妙苗 阅读(75) 评论(0) 推荐(0) 编辑
摘要: There are n cities. Some of them are connected, while some are not. If city a is connected directly with city b, and city b is connected directly with 阅读全文
posted @ 2021-11-18 02:16 苗妙苗 阅读(66) 评论(0) 推荐(0) 编辑
摘要: This question is about implementing a basic elimination algorithm for Candy Crush. Given an m x n integer array board representing the grid of candy w 阅读全文
posted @ 2021-11-17 07:52 苗妙苗 阅读(46) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 77 下一页