码迷,mamicode.com
首页 >  
搜索关键字:interview    ( 649个结果
剑指Offer 18. 二叉树的镜像 (二叉树)
题目描述操作给定的二叉树,将其变换为源二叉树的镜像。输入描述:二叉树的镜像定义:源二叉树 8 / \ 6 10 / \ / \ 5 7 9 11 镜像二叉树 8 / \ 10 6 / \ / \ 11 9 7 5题目地址https://www.now... ...
分类:其他好文   时间:2018-10-13 22:52:50    阅读次数:197
二叉搜索树与双向链表
题目描述 输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表。要求不能创建任何新的结点,只能调整树中结点指针的指向。 提交链接:点击 思路: 代码: 输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表。要求不能创建任何新的结点,只能调整树中结点指针的指向。 提交链接:点击 思路: 代 ...
分类:其他好文   时间:2018-10-13 18:14:16    阅读次数:99
[leetcode] Binary Tree Level Order Traversal
Binary Tree Level Order Traversal Ⅰ Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by leve ...
分类:其他好文   时间:2018-10-13 02:34:51    阅读次数:154
【长文】Google面试官分步解析自己泄漏前的面试题,超多干货和建议
下面这个问题,是我面试生涯中第一个问题;也是第一个被泄漏出来,以及第一个被禁掉的问题。![](http://upload-images.jianshu.io/upload_images/226662-74f41ea6de3c214f?imageMogr2/auto-orient/strip%7Cim... ...
分类:其他好文   时间:2018-10-10 12:13:13    阅读次数:149
[leetcode] Product of Array Except Self
Given an array nums of n integers where n > 1, return an array output such that output[i] is equal to the product of all the elements of nums except n ...
分类:其他好文   时间:2018-10-07 14:41:07    阅读次数:171
面试题 GitHub整理
https://zhengjianglong.gitbooks.io/note-of-interview/content/os/section2.html https://github.com/LEAGUE-OF-BME/InterviewFAQ https://hit-alibaba.github ...
分类:其他好文   时间:2018-09-25 19:29:27    阅读次数:247
uber phone interview reviews
2018 1. 简化版KNN算法写code实现,用Euclidean distance。(heap tree那里我是用heaplist实现的,出了个bug,而且写得太慢把时间耗光了) 2. 概率题,扔硬币,n次中有m次head,问是否能说明硬币是biased,写个函数算出来(经典题不难,但是没时间了 ...
分类:其他好文   时间:2018-09-24 11:30:38    阅读次数:122
uber onsite interview reviews
1. 2018-08 marketplace pricing组,data engineer 我们组负责用machine learning models做实时的用户定价,直接影响Uber营收,利润和成长。可以说,我们组的performance相当程度上影响明年Uber上市的股价。 工作当中需要涉及到的 ...
分类:其他好文   时间:2018-09-24 11:28:08    阅读次数:305
线程进程
JAVA多线程和并发基础面试问答 原文链接:http://ifeve.com/java-multi-threading-concurrency-interview-questions-with-answers/ 多线程和并发问题是Java技术面试中面试官比较喜欢问的问题之一。在这里,从面试的角度列出 ...
分类:编程语言   时间:2018-09-16 23:01:41    阅读次数:248
LeetCode 移动零
https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/28/ 给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。 示例: 说明: 此题有两个思 ...
分类:移动开发   时间:2018-08-31 14:02:37    阅读次数:233
649条   上一页 1 ... 13 14 15 16 17 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!