码迷,mamicode.com
首页 >  
搜索关键字:interview    ( 649个结果
中断方法测试
package com.fh.interview; /** * 中断测试 * * @author * @create 2018-05-27 下午3:18 **/ public class InterruptDemo { public static void main(String[] args) { ...
分类:其他好文   时间:2018-05-27 16:24:01    阅读次数:183
略略略-Updating
主目录 错过了春招,能力有限与大厂无缘了,只能老老实实准备秋招咯,加油呗Hxd! 在各大网站收集到的面经和资料放在这里,只用于个人秋招准备! 先端上吊炸天的复习书 "Github:Interview Notebook" 来自渣渣最后的挣扎! 编程语言基础知识:C/C++、Java 算法与数据结构 计 ...
分类:其他好文   时间:2018-05-25 23:32:05    阅读次数:205
Android 面试题集 包含答案
作者:guoxiaoxing 链接: https://github.com/guoxiaoxing/android-interview 本文基于作者采用的MIT协议分发。 手画一下Android系统架构图,描述一下各个层次的作用? Android系统架构图 从上到下依次分为六层: 应用框架层 进程通 ...
分类:移动开发   时间:2018-05-14 13:48:34    阅读次数:263
LeetCode Hard: 4. Median of Two Sorted Arrays
一、题目 There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexi ...
分类:其他好文   时间:2018-05-10 11:22:36    阅读次数:146
面试39---二叉树的深度
题目链接 求解二叉树的深度,延伸可见leetcode110题。 法一:dfs。 1 private int TreeDepth(TreeNode root) { 2 if(root == null) { 3 return 0; 4 } 5 int l = TreeDepth(root.left); ...
分类:其他好文   时间:2018-05-09 14:56:24    阅读次数:127
The interview outline
一.基础部分 1 2 3 二.函数 1 2 3 三.模块 常用到的模块有哪些? 常用的正则表达式 查找某一路径下所有的文件 创建删除文件 模块安装方式 四.面向对象 1 2 3 五.网络编程 OSI 7层协议 三次握手、四次挥手 TCP和UDP 六.并发编程 进程、线程、协程区别 GIL锁 进程池线 ...
分类:其他好文   时间:2018-05-07 19:35:19    阅读次数:196
Facebook interview problem:13. Roman to Integer
description: Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, two is written as II in Roman numeral, ju ...
分类:其他好文   时间:2018-05-03 13:33:18    阅读次数:272
JAVA多线程和并发基础面试问答
JAVA多线程和并发基础面试问答 原文链接:http://ifeve.com/java-multi-threading-concurrency-interview-questions-with-answers/ 多线程和并发问题是Java技术面试中面试官比较喜欢问的问题之一。在这里,从面试的角度列出 ...
分类:编程语言   时间:2018-04-30 23:55:00    阅读次数:344
2. 解题报告~买卖股票的最佳时机 II
原题地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/22/ 给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。 设计一个算法来计算你所能获取的最大利润。你可以尽 ...
分类:其他好文   时间:2018-04-22 14:46:30    阅读次数:184
java基础(一)
java关键字 final 数据 基本数据类型:使数值不变 引用数据类型:引用不变,即不能引用其他对象。但引用的对象可以修改 方法 声明方法不能被子类覆盖。 private 方法隐式地被指定为 final,如果在子类中定义的方法和基类中的一个 private 方法签名相同,此时子类的方 法不是覆盖基 ...
分类:编程语言   时间:2018-04-21 21:20:59    阅读次数:186
649条   上一页 1 ... 18 19 20 21 22 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!