An open API service indexing awesome lists of open source software.

https://github.com/hollischuang/interview

http://www.hollischuang.com/archives/2223 答案整理。
https://github.com/hollischuang/interview

Last synced: 6 months ago
JSON representation

http://www.hollischuang.com/archives/2223 答案整理。

Awesome Lists containing this project

README

          

### BAT面试题答案正在持续更新...

> 专对BAT等大厂面试

---

### 算法题目详细解答

- [leetCode题目答案](https://github.com/hollischuang/algorithm)

### 计算机基础知识

- [数据结构](https://github.com/hollischuang/Interview/blob/master/contents/CLanguageBase/ConstructorAndDestructor.md)
- [算法](https://github.com/hollischuang/Interview/blob/master/contents/ComputerBasicKnowledge/Algorithm.md)
- [操作系统](https://github.com/hollischuang/Interview/blob/master/contents/ComputerBasicKnowledge/OperatingSystem.md)
- [计算机网络](https://github.com/hollischuang/Interview/blob/master/contents/ComputerBasicKnowledge/ComputerNetworking.md)
- [数据库](https://github.com/hollischuang/Interview/blob/master/contents/ComputerBasicKnowledge/Database.md)
- [海量数据处理](https://github.com/hollischuang/Interview/blob/master/contents/ComputerBasicKnowledge/BigdateProcessing.md)

---

### C语言基础

- [构造函数、析构函数](https://github.com/hollischuang/Interview/blob/master/contents/CLanguageBase/ConstructorAndDestructor.md)
- [C++相关](https://github.com/hollischuang/Interview/blob/master/contents/CLanguageBase/CPlusPlusRelated.md)
- [其他](https://github.com/hollischuang/Interview/blob/master/contents/CLanguageBase/Other.md)

---

### Java基础

- [抽象、封装、继承、多态](https://github.com/hollischuang/Interview/blob/master/contents/JavaBase/OOPFutures.md)
- [集合相关](https://github.com/hollischuang/Interview/blob/master/contents/JavaBase/Collections.md)
- [异常相关](https://github.com/hollischuang/Interview/blob/master/contents/JavaBase/Exceptions.md)
- [其它](https://github.com/hollischuang/Interview/blob/master/contents/JavaBase/Other.md)

---
### Java高级

- [多线程](https://github.com/hollischuang/Interview/blob/master/contents/JavaSenior/MultiThreads.md)
- [JVM底层技术](https://github.com/hollischuang/Interview/blob/master/contents/JavaSenior/JVMUnderlyingTechnology.md)
- [I/O](https://github.com/hollischuang/Interview/blob/master/contents/JavaSenior/IO.md)
- [其它](https://github.com/hollischuang/Interview/blob/master/contents/JavaSenior/Other.md)

---
### JavaWeb

- [Servlet](https://github.com/hollischuang/Interview/blob/master/contents/JavaWeb/Servlet.md)
- [MVC框架](https://github.com/hollischuang/Interview/blob/master/contents/JavaWeb/MVCFramework.md)
- [Http相关](https://github.com/hollischuang/Interview/blob/master/contents/JavaWeb/Http.md)
- [SSM相关](https://github.com/hollischuang/Interview/blob/master/contents/JavaWeb/SSM.md)
- [Web安全](https://github.com/hollischuang/Interview/blob/master/contents/JavaWeb/WebSecurity.md)
- [动态代理](https://github.com/hollischuang/Interview/blob/master/contents/JavaWeb/DynamicProxy.md)
- [编码问题](https://github.com/hollischuang/Interview/blob/master/contents/JavaWeb/CodingProblem.md)
- [其它](https://github.com/hollischuang/Interview/blob/master/contents/JavaWeb/Others.md)

---
### UML类图与设计模式

- [UML类图](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/UMLClassDiagram.md)

- 创建型模式

- [!工厂模式(Factory Pattern)](https://github.com/hollischuang/Interview/tree/master/contents/UMLClassDiagramAndDesignPattern/CreationPattern/)
- [!抽象工厂模式(Abstract Factory Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/CreationPattern/AbstractFactoryPattern.md)
- [!单例模式(Singleton Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/CreationPattern/SingletonPattern.md)
- [建造者模式(Builder Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/CreationPattern/BuilderPattern.md)
- [原型模式(Prototype Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/CreationPattern/PrototypePattern.md)

> 参考资料

- 结构型模式

- [!适配器模式(Adapter Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/StructuralPattern/AdapterPattern.md)
- [桥接模式(Bridge Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/StructuralPattern/BridgePattern.md)
- [过滤器模式(Filter、Criteria Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/StructuralPattern/FilterCriteriaPattern.md)
- [组合模式(Composite Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/StructuralPattern/CompositePattern.md)
- [!装饰器模式(Decorator Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/StructuralPattern/DecoratorPattern.md)
- [外观模式(Facade Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/StructuralPattern/FacadePattern.md)
- [享元模式(Flyweight Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/StructuralPattern/FlyweightPattern.md)
- [!代理模式(Proxy Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/StructuralPattern/ProxyPattern.md)

> 参考资料

- 行为型模式

- [命令模式(Command Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/CommandPattern.md)
- [解释器模式(Interpreter Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/InterpreterPattern.md)
- [迭代器模式(Iterator Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/IteratorPattern.md)
- [中介者模式(Mediator Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/MediatorPattern.md)
- [备忘录模式(Memento Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/MementoPattern.md)
- [!观察者模式(Observer Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/ObserverPattern.md)
- [状态模式(State Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/StatePattern.md)
- [空对象模式(Null Object Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/NullObjectPattern.md)
- [!策略模式(Strategy Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/StrategyPattern.md)
- [!模板模式(Template Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/TemplatePattern.md)
- [访问者模式(Visitor Pattern)](https://github.com/hollischuang/Interview/blob/master/contents/UMLClassDiagramAndDesignPattern/BehavioralPattern/VisitorPattern.md)

> 参考资料

---

### 联系作者

> Hollis:hollischuang@qq.com
>
> Kevin:AboutCloud@163.com
>
> hueizhe:well_coder@qq.com

---