Phone interview guide: 多说. 说什么呢? 下面这些条目,逐个说. 问, 碰到不理解的需求. 说自己理解的需求, 跟考官确认. 说几个例子和答案, 验证自己的理解. 说出自己的解法. 复杂度. time, space. -- brute force -- 优化 错误输入处理, ...
分类:
其他好文 时间:
2020-02-13 09:28:35
阅读次数:
67
一、Software Engineering Basics a、This set of Software Engineering Interview Questions and Answers focuses on “Software Engineering Ethics ”. 1. Choose ...
分类:
其他好文 时间:
2020-01-05 09:19:51
阅读次数:
98
Maximum Subarray DP问题 全称(Dynamic Programming) https://www.freecodecamp.org/news/follow these steps to solve any dynamic programming interview problem ...
分类:
其他好文 时间:
2020-01-04 22:37:30
阅读次数:
95
如何减小安装包的大小主要是减小资源的大小不常使用的资源,使用时再从网络下载。绘制代替图片资源OOM (Out Of Memory)https://www.zhihu.com/question/37483907 怎么准备Android面试?ANR, Android各个版本特性,Dex2Oatsystr... ...
分类:
移动开发 时间:
2020-01-04 01:11:21
阅读次数:
208
原文地址:http://ifeve.com/spring-interview-questions-and-answers/ 目录 Spring 概述 依赖注入 Spring beans Spring注解 Spring数据访问 Spring面向切面编程(AOP) Spring MVC Spring 概 ...
分类:
编程语言 时间:
2019-12-29 18:35:01
阅读次数:
82
原文地址:https://github.com/yifeikong/reverse-interview-zh 反向面试 大部分翻译自:https://github.com/viraptor/reverse-interview ,亦有其他网友补充。 下面列表里的问题对于参加技术面试的人来说可能有些用。 ...
分类:
其他好文 时间:
2019-12-29 18:14:51
阅读次数:
76
System design interview: how to design a chat system (e.g., Messenger, WeChat or WhatsApp) Methodology: READ MF! Please use this "READ MF!" framework ...
分类:
其他好文 时间:
2019-12-28 09:43:44
阅读次数:
81
wait() 方法是线程间通信的方法之一 必须在 synchronized 方法或 synchronized 修饰的代码块中使用,否则会抛出 IllegalMonitorStateException 只能在加锁的对象调用 wait() 方法 加锁的对象调用 wait() 方法后,线程进入等待状态,直 ...
分类:
其他好文 时间:
2019-12-17 15:08:08
阅读次数:
126
自己整理的面试题,希望可以帮到大家,需要更多资料的可以私信我哦,大家一起学习进步! 70、TreeSet里面放对象,如果同时放入了父类和子类的实例对象,那比较时使用的是父类的compareTo方法,还是使用的子类的compareTo方法,还是抛异常! (应该是没有针对问题的确切的答案,当前的add方 ...
分类:
编程语言 时间:
2019-12-15 20:07:30
阅读次数:
76
参考: https://troywu0.gitbooks.io/interview/整数中出现1的次数(从1到n整数中1出现的次数).html 题目描述 求出1~13的整数中1出现的次数,并算出100~1300的整数中1出现的次数?为此他特别数了一下1~13中包含1的数字有1、10、11、12、13 ...
分类:
其他好文 时间:
2019-12-12 21:13:33
阅读次数:
85