码迷,mamicode.com
首页 >  
搜索关键字:interview    ( 649个结果
1029. Two City Scheduling
There are 2N people a company is planning to interview. The cost of flying the i-th person to city A is costs[i][0], and the cost of flying the i-th p ...
分类:其他好文   时间:2020-06-03 23:34:27    阅读次数:72
多线程打印:三个线程轮流打印0到100
package club.interview.thread.print; /** * 3个线程从0到100轮流打印。要求输出结果如下 * Thread-0:0 * Thread-1:1 * Thread-2:2 * Thread-0:3 * <p> * 知识点扫盲: * 1. 类锁的wait、not ...
分类:编程语言   时间:2020-06-03 20:37:09    阅读次数:96
字节跳动+百度+阿里巴巴高频面试题之链表专题(二)
1、逆置一个单链表。(2020年阿里巴巴二面原题) 2、判断单链表是否是回文结构。(2019年字节跳动二面原题) 3、删除一个有序单链表中的重复节点。(2019年字节跳动二面原题) 4、复杂链表的复制。(2020年百度二面原题)
分类:其他好文   时间:2020-06-01 20:36:25    阅读次数:62
micro service interview
说说什么事微服务? 微服务是将整个项目拆分成多个相互独立的服务,一个服务实现一个独立的功能 微服务有哪些优点? 微服务是松耦合的,开发和部署都是独立的 微服务能使用不同语言的开发 微服务都能够由专注于该服务的团队独立开发 微服务都是可以独立调整的 微服务有哪些缺点? 微服务将整个应用拆分成多个服务, ...
分类:其他好文   时间:2020-05-31 15:44:15    阅读次数:57
Find if all numbers appear an even number of times
package _interview_question /** * Given a list/array of integers, return a boolean that states whether all numbers appear an even number of times. Exa ...
分类:移动开发   时间:2020-05-29 13:33:33    阅读次数:69
10个值得深思的PHP面试问题
本文翻译自:https://www.toptal.com/php/interview-questions ,文章所罗列的问题虽然看似简单,但是每个背后都涵盖了一个或几个大家容易忽视的基础知识点,希望能够帮助到你的面试和平时工作。 Q1 第一个问题关于弱类型 $str1 = 'yabadabadoo' ...
分类:Web程序   时间:2020-05-23 20:45:26    阅读次数:76
tcp 三次握手,四次挥手
三次握手 四次挥手 三次握手,四次挥手相关问题 附大佬总结的:https://github.com/wangliguo123321/learningNote interview/blob/master/learningNote/studyDiary/%E8%AE%A1%E7%AE%97%E6%9C% ...
分类:其他好文   时间:2020-05-23 14:49:40    阅读次数:47
lc 字符串相乘
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1015/ 代码: #include <iostream> #include <algorithm> using namespace std; class S ...
分类:其他好文   时间:2020-05-18 01:07:50    阅读次数:71
lc 翻转字符串里的单词
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1011/ 代码: class Solution { public: string reverseWords(string s) { int len = s. ...
分类:其他好文   时间:2020-05-18 01:02:43    阅读次数:81
lc 复原IP地址
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1044/ 代码: #include <string> #include <algorithm> using namespace std; class Sol ...
分类:其他好文   时间:2020-05-18 01:00:39    阅读次数:58
649条   上一页 1 2 3 4 5 6 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!