E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
!!!Interview
《Cracking the Coding
Interview
》——第13章:C和C++——题目1
2014-04-25 19:13 题目:用C++写一个读取文件倒数K行的方法。 解法:因为是要取倒数K行,所以我的思路是一行一行地读。过程中需要保存一个长度为K的链表,每次新读到一行都将表头节点移到表尾,如此滚动直到文件结束。最后表头节点中存的字符串就是倒数第K行,依次输出就是倒数K行了。不过当时做这题的时候貌似偷懒了,直接用python写了个偷懒并且不高效的方法。 代码: 1 imp
·
2015-10-31 10:07
interview
《Cracking the Coding
Interview
》——第13章:C和C++——题目5
2014-04-25 19:59 题目:C的关键字volatile有什么用? 解法:搞硬件设计的人好像更关注这个关键字。volatile本身是易变的意思,应该和persistent有反义词关系吧。说一个变量或是函数是易变的,就是说不知道会发生什么变化,所以不要编译器按规则进行优化处理,这就是我对此关键字唯一的了解了。目前为止,我貌似还没有遇到需要用到这个的情景,看来阅读过的代码还是太少。 代
·
2015-10-31 10:07
interview
《Cracking the Coding
Interview
》——第13章:C和C++——题目4
2014-04-25 19:50 题目:深拷贝和浅拷贝有什么区别?如何应用? 解法:深拷贝传值,浅拷贝传引用。java里对此做了限制,而C++里面用起来更自由。大结构不宜传值,因为拷贝过程效率低。 代码: 1 // 13.4 What's deep copy and shallow copy? Expain their appications in different cases.
·
2015-10-31 10:07
interview
《Cracking the Coding
Interview
》——第13章:C和C++——题目2
2014-04-25 19:29 题目:对比一下哈希表和STL中的map的区别,哈希表如何实现?如果数据规模比较小,可以用什么来代替哈希表? 解法:哈希表可以理解为一堆桶,每个桶都有唯一的id,桶里可以存至少一个元素;而STL的map是一棵平衡二叉搜索树,每个节点存一个元素。还有很多细节要说,如果on-site面试的话,也许可以写写画画,或者直接写出一个简单的哈希表来,参考unordered_
·
2015-10-31 10:07
interview
Calculating FIFO Depth
http://www.asic-world.com/tidbits/fifo_depth.html Introduction One of the most common questions in
interview
s
·
2015-10-31 10:18
depth
english
interview
example
nbsp; good morning, my name is jack, it is really a great honor to have this opportunity for a
interview
·
2015-10-31 10:28
interview
difference between forward and sendredirect
Difference between SendRedirect and forward is one of classical
interview
questions asked during java
·
2015-10-31 10:13
redirect
软件开发者面试百问
来自InfoQ: http://www.infoq.com/cn/articles/programmer-
interview
这里大多数问题的答案都没有对错之分!
·
2015-10-31 10:18
软件开发
一首歌曲,一种心情
Groves-Traveling Light Joel Hanson和Sara Groves是两个乡村歌手,Joel 是一个优秀吉他弹奏者,在与Sara Groves合作前发行过两张专辑《broken》和《
Interview
·
2015-10-31 09:48
心情
Postmortem of Individual Project-----By Yishi Xing
殷老师不管是在上课,邮件,还是MSRA组织的live
interview
·
2015-10-31 09:31
project
DotNet Concept
Introduction Seems that I am going to provide instructions regarding how to face technical
interview
s
·
2015-10-31 09:42
net
很好的英文自我介绍
It is really my honor to have this opportunity for an
interview
, I hope i can make a good performance
·
2015-10-31 09:27
介绍
程序员面试什么最重要?
randyjiawenjie/article/details/8587587 来自 http://www.cnblogs.com/weidagang2046/archive/2013/02/15/on-
interview
.html
·
2015-10-31 09:44
程序员
Why use the Entity Framework?(转帖)
introduction to the Entity Framework, listen to a podcast about it, or watch a screen cast or video of an
interview
·
2015-10-31 09:53
framework
Interview
要清楚的知道自己想要的是什么,想要的发展方向是什么,不要为了一点点的薪水,什么样的工作都去面试,工作的关键是什么?兴趣,一定要爱一行专一行才行。 要清楚的知道自己会的是什么,我们需要一位Framework开发工程师,需要的不只是JAVA的专家,也要有广阔的视野、思维、活力,不会不要紧,但是一定要有能力去学习,给考官表现出很快学的会的能力。曾经跟一位要来面试的人说过我们需要用到Groov
·
2015-10-31 09:25
interview
《Cracking the Coding
Interview
》——第18章:难题——题目9
2014-04-29 04:18 题目:有一连串的数被读入,设计一个数据结构,能随时返回当前所有数的中位数。 解法:用一个大顶堆,一个小顶堆将数分成数量最接近的两份,就能轻松得到中位数了。 代码: 1 // 18.9 A stream of integers are passed to you, you have to tell me the median as they keep
·
2015-10-31 09:19
interview
《Cracking the Coding
Interview
》——第18章:难题——题目11
2014-04-29 04:30 题目:给定一个由‘0’或者‘1’构成的二维数组,找出一个四条边全部由‘1’构成的正方形(矩形中间可以有‘0’),使得矩形面积最大。 解法:用动态规划思想,记录二维数组每个元素向上下左右四个方向各有多少个连续的‘1’,然后用O(n^3)时间计算出满足条件的最大正方形。时间复杂度O(n^3),空间复杂度O(n^2)。 代码: 1 // 18.11 Giv
·
2015-10-31 09:19
interview
《Cracking the Coding
Interview
》——第18章:难题——题目12
2014-04-29 04:36 题目:最大子数组和的二位扩展:最大子矩阵和。 解法:一个维度上进行枚举,复杂度O(n^2);另一个维度执行最大子数组和算法,复杂度O(n)。总体时间复杂度为O(n^3),还需要O(n)额外空间。 代码: 1 // 18.12 Given an n x n matrix, find the submatrix with largest sum. Retu
·
2015-10-31 09:19
interview
《Cracking the Coding
Interview
》——第18章:难题——题目13
2014-04-29 04:40 题目:给定一个字母组成的矩阵,和一个包含一堆单词的词典。请从矩阵中找出一个最大的子矩阵,使得从左到右每一行,从上到下每一列组成的单词都包含在词典中。 解法:O(n^3)级别的时间和空间进行动态规划。这道题目和第17章的最后一题很像,由于这题的时间复杂度实在是高,我动手写了字典树进行加速。如果单纯用哈希表来作为词典,查询效率实际会达到O(n)级别,导致最终的算法
·
2015-10-31 09:19
interview
《Cracking the Coding
Interview
》——第18章:难题——题目8
2014-04-29 03:10 题目:给定一个长字符串S和一个词典T,进行多模式匹配,统计S中T单词出现的总个数。 解法:这是要考察面试者能不能写个AC自动机吗?对面试题来说太难了吧?我不会,所以只写了个KMP用N次的方法。 代码: 1 // 18.8 Given a list of words and a piece of text, find out how many times
·
2015-10-31 09:19
interview
《Cracking the Coding
Interview
》——第18章:难题——题目10
2014-04-29 04:22 题目:给定一堆长度都相等的单词,和起点、终点两个单词,请从这堆单词中寻找一条变换路径,把起点词变成终点词,要求每次变换只能改一个字母。 解法:Leetcode中有Word Ladder,这题基本思路一致。 代码: 1 // 18.10 Given a list of words, all of same length. Given a source a
·
2015-10-31 09:19
interview
《Cracking the Coding
Interview
》——第18章:难题——题目6
2014-04-29 02:27 题目:找出10亿个数中最小的100万个数,假设内存可以装得下。 解法1:内存可以装得下?可以用快速选择算法得到无序的结果。时间复杂度总体是O(n)级别,但是常系数不小。 代码: 1 // 18.6 Find the smallest one million number among one billion numbers. 2 // Suppo
·
2015-10-31 09:18
interview
《Cracking the Coding
Interview
》——第18章:难题——题目7
2014-04-29 03:05 题目:给定一个词典,其中某些词可能能够通过词典里其他的词拼接而成。找出这样的组合词里最长的一个。 解法:Leetcode上有Word Break这道题,和这题基本思路一致。 代码: 1 // 18.7 Given a list of words, find out the longest word made of other words in the
·
2015-10-31 09:18
interview
《Cracking the Coding
Interview
》——第18章:难题——题目5
2014-04-29 01:51 题目:你有一个文本文件,每行一个单词。给定两个单词,请找出这两个单词在文件中出现的其中一对位置,使得这两个位置的距离最短。 解法:我的思路是建立倒排索引,计算出所有单词出现的所有位置。下面代码只给出了两个索引的处理方法。倒排索引一般以链表的形式出现,通过顺序扫描两个链表,类似归并排序算法中的merge过程,就能够找出最短距离。请看代码。 代码: 1 /
·
2015-10-31 09:18
interview
.NET牛人应该知道些什么
原文地址:http://www.hanselman.com/blog/WhatGreatNETDevelopersOughtToKnowMoreNET
Interview
Questions.aspx 作者
·
2015-10-31 09:59
.net
ON THE EVOLUTION OF MACHINE LEARNING: FROM LINEAR MODELS TO NEURAL NETWORKS
ON THE EVOLUTION OF MACHINE LEARNING: FROM LINEAR MODELS TO NEURAL NETWORKS We recently
interview
ed
·
2015-10-31 09:26
7步打造最佳简历(2)
7步打造最佳简历(2) by Alesia Benedict, Get
Interview
s.com Want more
interview
s?
·
2015-10-31 09:01
简历
如何应对糟糕的面试官(2)
该谈谈你了 The best
interview
s are often those in which you're able to forge a real connection with your
·
2015-10-31 09:00
面试
7步打造最佳简历(1)
7步打造最佳简历(1) by Alesia Benedict, Get
Interview
s.com Want more
interview
s?
·
2015-10-31 09:00
简历
如何准备面试复试(1)
You wowed your prospective employers on your first
interview
and have been called back for an encore.
·
2015-10-31 09:00
面试
如何准备面试复试(2)
You wowed your prospective employers on your first
interview
and have been called back for an encore.
·
2015-10-31 09:00
面试
换工作如何加薪
I've been
interview
ing for other positions and am often asked about my current salary. I
·
2015-10-31 09:59
工作
如何应对糟糕的面试官(1)
You've prepared for any
interview
question that could come your way. 身穿自己最好的套装、脚蹬锃亮的皮鞋、手拿着简历,对于一切面试
·
2015-10-31 09:59
面试
无意中找到的一篇关于面试的文章,感觉写的很好!
Interview
确实是
·
2015-10-31 09:03
面试
Financial Information Exchange (FIX) Protocol
Interview
Questions Answers[z]
What do you mean by Warrant? Warrant is a financial product which gives right to holder to Buy or Sell underlying financial security, its similar to option with some differences e.g. Warrants are no
·
2015-10-31 09:50
interview
Java程序员面试失败的5大原因
原文链接:http://www.geekwww.com/5-reason-java-programmer-
interview
.html 本文是极客网原创翻译,请按文末要求转载!
·
2015-10-31 08:29
java
用户调研
采用方式: 深入面谈 (in-depth
interview
) 采访对象:小学生 我们通过深入面谈方式对用户的需求总结了以下方面: 用户的需求:1.希望界面看起来很漂亮的  
·
2015-10-31 08:23
用户
用户调研
然后后面老师又要我们 把用户调研写上博客,所以只能后来在宿舍再次还原当时场景所以我们组 的调研方法并没有局限于一种方法,有多种方法结合,比较明显的调研方法: 1.深入面谈 (in-depth
interview
·
2015-10-31 08:57
用户
12个有趣的C语言面试题
http://www.csdn.net/article/2012-09-06/2809604-12-c-
interview
-questions/1 摘要:12个C语言面试题,涉及指针、进程、运算、结构体
·
2015-10-30 15:32
C语言
Node.js面试问与答
原文: http://blog.risingstack.com/node-js-
interview
-questions/ 什么是error-first callback?
·
2015-10-30 15:03
node.js
因为信任,所以简单 --专访支付宝架构师团队
作者: Fenng | 可以转载, 转载时务必以超链接形式标明文章原始出处和作者信息及版权声明 网址: http://www.dbanotes.net/arch/alipay_arch_team_
interview
.html
·
2015-10-30 14:26
架构师
这次面试就差不多了,你有什么问题需要问我呢?
英文原文:The
Interview
Is Almost Over, Do You Have Any Questions For Me?
·
2015-10-30 14:25
面试
Hanoi Tower问题分析
前言 回家休息第3天了,状态一直不是太好,主要是要补牙,检查身体,见同学见亲戚,心里又着急校招,难得能腾出时间来好好思考,这里也是看<cracking the coding
interview
&
·
2015-10-30 13:12
问题
如何谈自己的工作经历和资格
通常
interview
er会很想了解你以前做过些什么和你是怎么做的。 记住这个时候你可不要谦虚。你要很自信地,很流畅地谈你在以前和现在的工作中做了些什么和怎么做的。 谈时要注意时态。
·
2015-10-30 12:42
工作
tips of .net programming
After the
interview
of Ethos,I make a decision about the english study.From now on ,I will choose topics
·
2015-10-30 12:20
programming
Infographic: What Tools Developers Actually Use
The folks at BestVendor.com
interview
ed 500 developers and compiled this profile of the tools that they
·
2015-10-30 12:41
developer
前端工作面试问题(上)
https://github.com/h5bp/Front-end-Developer-
Interview
-Questions/tree/master/Translations/Chinese  
·
2015-10-30 11:45
工作
The Eight Levels of Programmers,程序员的8中境界
Have you ever gotten that classic job
interview
question, "where do you see yourself in
·
2015-10-30 11:02
level
刷题必备书籍
刷题必备书籍:Cracking the Coding
Interview
: 150 Programming Questions and Solutions 简历:The Google
·
2015-10-28 08:06
书籍
程序员求职招聘专题上线了
直击地址:http://kb.cnblogs.com/zt/
interview
/ 关于面试 面试是测查和评价人员能力素质的一种考试活动。
·
2015-10-28 08:55
程序员
上一页
81
82
83
84
85
86
87
88
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他