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
重新安排0和1
1处于数组右半部分2,一个整数数组,重新安排数组,使得奇数(odd)处于数组左半部分,偶数(even)处于数组有半部分分析:双指针问题,思路虽然简单,但时时要保证左指针小于右指针packagejava
interview
.array
ustc_summer
·
2014-11-21 10:00
0和1
双指针
奇和偶
Q7.1.3 找出字符串中出现最多的字母及次数
packagejava
interview
; importjava.util.ArrayList; p
ustc_summer
·
2014-11-12 13:00
10个我最喜欢问程序员的面试问题
英文原文:10Programmer
Interview
QuestionsI’dliketobeasked最近我拜读很多文章,都是介绍面试问题的,我真心不理解,面试官代表公司想要聘用的是最优秀的程序员,那就意味着需要想出一些有意义的面试问题
·
2014-11-05 01:00
程序员
面试
问题
一次谷歌面试趣事
一次谷歌面试趣事投递人 丕子 发布于 2011-04-11 07:22 评论(50) 有4966人阅读 原文链接 [收藏] « »本文是从 A Google
Interview
ing Story
whereismatrix
·
2014-11-03 22:00
算法
面试题
感兴趣的博客——待读
刘未鹏http://mindhacks.cn/http://mindhacks.cn/2011/11/04/how-to-
interview
-a-person-for-two-years/http://
haimianjie2012
·
2014-10-30 15:34
我的收藏
Interview
English:英语面试经验谈
想找一份满意的工作吗?面试中面对外国老板连珠炮似的提问,有没有觉得心慌意乱、无所适从?求职过程中面试尤为重要,回答问题,如果能简明扼要,真诚中肯,合乎老外口味,那么录取机会必定大大增加。当然,有的问题,也要轻描淡写,以免言多必失。本篇摘录了若干面试中出现频率较高的问题及精彩回答,希望能在您求职路上助您一臂之力。英文面试中出现频率较高的问题及精彩回答Q:Canyousellyourselfintwo
雍雍_yoyo
·
2014-10-28 14:00
What can I learn right now in just 10 minutes that could be useful for the rest of my life?
Primacy and recency :Peoplemostrememberthefirstandlastthingstooccur,andbarelythemiddle.When schedulingan
interview
bieru
·
2014-10-24 09:05
interview
remember
customers
Minutes
themselves
What can I learn right now in just 10 minutes that could be useful for the rest of my life?
Primacyandrecency:Peoplemostrememberthefirstandlastthingstooccur,andbarelythemiddle.Whenschedulingan
interview
bieru
·
2014-10-24 09:05
remember
interview
customers
其他
前端面试整理
原文地址:https://github.com/qiu-deqing/FE-
interview
#img%E7%9A%84title%E5%92%8Calt%E6%9C%89%E4%BB%80%E4%B9%
weixin_34381687
·
2014-10-23 14:00
前端
面试
操作系统
赛马题
转自:http://intearview.com/post/2010/04/04/Ranganathgs-
interview
-at-google-company.aspx
·
2014-10-23 04:00
转
求职英语
interview
er:面试官applicant:求职者part-timejob:兼职工作full-time:全职manager:经理director:主任president:董事长,总经理degree
墨云天
·
2014-10-22 14:00
前端资料收集
前端学习分享: https://github.com/qiu-deqing/FE-learning 前端面试题分享: https://github.com/qiu-deqing/FE-
interview
木木在路上
·
2014-10-20 10:53
前端
资料
What Great .NET Developers Ought To Know (More .NET
Interview
Questions)
A while back, I posted a list of ASP.NET
Interview
Questions.
·
2014-10-20 09:00
developer
cracking the coding
interview
No1.8
1.8Assume you have a method isSubstring which checks if one word is a substring of another. Given two strings,s1 and s2,write code to check if s2 is a rotation of s1 using only onw call to isSubstring
hnuzengchao
·
2014-10-19 17:00
cracking the coding
interview
No1.7
1.7 Write an algorithm such that if an element in an M*N matrix is 0,its entire row and column are set to 0;Answer:voidfunction(intmatrix[][],intm,intn) { if(matrix==NULL) return; inti,j,k; introw[m],
hnuzengchao
·
2014-10-19 16:00
cracking the coding
interview
No1.6
1.6 Given an image represented by an N*N matrix,where each pixel in the image is 4 bytes,writea method to rotate the image by 90 degrees. Can you do this in place?Answer:顺时针旋转voidrotation(intmatrix[][
hnuzengchao
·
2014-10-19 16:00
cracking the coding
interview
No1.5
1.5 Implement a method to perform basic string compression using the counts of repeated characters.For example. For example,the string aabcccccaaa would become a2b1c5a3.If the “compressed”string would
hnuzengchao
·
2014-10-19 16:00
cracking the coding
interview
No1.4
1.4Write a method to replace all spaces in a string with’%20’,You may assume that the string has sufficient spaceat the end of the string to hold the additional characters,and that you are given the “
hnuzengchao
·
2014-10-19 16:00
cracking the coding
interview
No1.3
1.3 Given two strings,write a method to decide if one is permutation of the other.//(1)O(nlogn)排序后比较字符串 //(2)O(n)hashtable boolisAnagram(strings1,strings2) { if(s1==NULL||s2==NULL) { returnfalse; } if
hnuzengchao
·
2014-10-19 15:00
ABC
记下这两个数字,然后代入下面这个算式中(为我自己发明,仅供参考,不具有其他意义):#x=numberofcompanies
interview
hnuzengchao
·
2014-10-19 11:00
cracking the coding
interview
中文版 (程序员面试金典)
转自:CTCI面试系列——谷歌面试官经典作品|快课网谷歌面试官经典作品(CTCI)目录1.1判断一个字符串中的字符是否唯一1.2字符串翻转1.3去除字符串中重复字符1.8利用已知函数判断字符串是否为另一字符串的子串2.1从链表中移除重复结点2.2实现一个算法从一个单链表中返回倒数第n个元素2.3给定链表中间某结点指针,删除链表中该结点2.4求由两个链表结点组成的数之和2.5给定一个循环链表,实
hnuzengchao
·
2014-10-19 11:00
cracking the coding
interview
中文版 (程序员面试金典)
转自:CTCI面试系列——谷歌面试官经典作品|快课网谷歌面试官经典作品(CTCI)目录1.1判断一个字符串中的字符是否唯一1.2字符串翻转1.3去除字符串中重复字符1.8利用已知函数判断字符串是否为另一字符串的子串2.1从链表中移除重复结点2.2实现一个算法从一个单链表中返回倒数第n个元素2.3给定链表中间某结点指针,删除链表中该结点2.4求由两个链表结点组成的数之和2.5给定一个循环链表,实
hackerzchao
·
2014-10-19 11:00
cracking
the
coding
interview
cracking the coding
interview
No1.2
1.2Implement a function vod reverse(char *str)in C or C++which reverses a null-terminated string.voidreverse(char*str) { if(str==NULL) return; char*str1=str; intlength=0; while(*str1!='\0') { lengt
hnuzengchao
·
2014-10-19 11:00
cracking the coding
interview
No1.1
1.1 Implement an algorithm to determine if a string has all unique characters. Whatifyoucannnotuseadditionaldatastructures?boolisUnique(char*str) { inthash[256]; memset(hash,0,sizeof(hash)); if(str
hnuzengchao
·
2014-10-19 10:00
elasticsearch文档集合
分布式搜索方案选型之五(终篇):Elasticsearch http://exploringelasticsearch.com/github_
interview
.html
san_yun
·
2014-10-15 22:00
elasticsearch
英文自我介绍
Itisreallymyhonortohavethisopportunityfora
interview
,Ihopeicanmakeagoodperformancetoday.I'mconfidentthatIcansucceed.NowiwillintroducemyselfbrieflyIam26yearsold
duxd1989
·
2014-10-13 10:28
Python Q&A
http://ilian.i-n-i.org/python-
interview
-question-and-answers/http://www.geek
interview
.com/
Interview
-Questions
yys
·
2014-10-11 12:00
Python Q&A
http://ilian.i-n-i.org/python-
interview
-question-and-answers/http://www.geek
interview
.com/
Interview
-Questions
yys
·
2014-10-11 12:00
cs找工作准备篇
看下面的文字之前,建议大家先看看两篇相关的文字(对应着看): 1.刘未鹏大牛的《怎么样花两年的时间去面试一个人》http://mindhacks.cn/2011/11 /04/how-to-
interview
-a-person-for-two-years
piaoxuefengqi
·
2014-10-10 09:00
面试
求职
找工作
延展
延展不是一开始定义类的时候定义的实例变量,而是后期根据需求而定义的实例变量,统一定义在.m文件中的延展中,外界不可见 @interfaceAppDelegate(){UIView*_conta
interView
lunlun426
·
2014-09-27 10:00
上级向的十个iOS面试问题
转载一篇比较好的面试文章,地址是:http://www.onevcat.com/2013/04/ios-
interview
/内容是:1、你使用过Objective-C的运行时编程(RuntimeProgramming
yqmfly
·
2014-09-26 16:00
2014年9月24日--两道CrackingTheCode
Interview
题目总结
CrackingTheCode
Interview
2.4 主要注意以下几个点: 1,代码逻辑的顺序,对于每一个node,应该先判断carry,在判断这个carry的时候其实是在判断前一个
shawnli2010
·
2014-09-26 00:00
HDU3486
Interview
e
ST算法输入时找出value的最大值max,则分组最少为n/max(分组从1开始枚举好像要TLE);然后枚举之后的分组,在每个分组内找最大值(典型RMQ问题),sum+=RMQ(L,R);当碰到第一个满足条件的分组(sum>k注意,题中说的large,是大于,不是大于等于,这地方我WA几次都没发现)时,break跳出循环,然后输出即可。#include #include #include #def
AC_Gibson
·
2014-09-23 12:00
OS面试题
转载自:http://placement.freshersworld.com/power-preparation/technical-
interview
-preparation/os-
interview
-questions
·
2014-09-23 10:00
面试题
2015年百度笔试汇总篇
给大家分享下~-----来自:http://gointernetgo.com/text
interview
/baidu/bdbs百度2015校园招聘前端开发笔试题(大连站)-回忆版2015百度校招用户行为分析研发工程师笔试题
superMarss
·
2014-09-17 21:00
百度
JAVA多线程和并发基础面试问答
JAVA多线程和并发基础面试问答原文链接:http://ifeve.com/java-multi-threading-concurrency-
interview
-questions-with-answers
Matrix海子
·
2014-09-05 21:00
JAVA多线程和并发基础面试问答
JAVA多线程和并发基础面试问答 原文链接:http://ifeve.com/java-multi-threading-concurrency-
interview
-questions-with-answers
·
2014-09-05 21:00
java多线程
导出Excel
List<Map<String, Object>> list =
interview
RecordDAO.totalCompanyForTeacherAll(paramMap);
Z_408
·
2014-09-01 16:00
导出Excel
导出
查找最大的数字子串
//
Interview
100.cpp:Definestheentrypointfortheconsoleapplication. // #include"stdafx.h" intmaxSubStr
pczhangtl
·
2014-09-01 10:00
关于Google神牛Jeff Dean的笑话,非程序员勿入
During his own Google
interview
, Jeff Dean was asked the implications if P=NP were
youngyangyang04
·
2014-08-23 00:00
电脑工程师外企求职记
I’mhereforan
interview
.MayIcomein?温馨提示:不要
JCY58
·
2014-08-19 16:00
十个学校应该教的技能
ComputerscienceSpeedreadingTimemanagementLearnhowtolearnMoneymanagementSurvivalskillsNegotiationskillsSelf-DefenseMentalhealthapplyforand
interview
forajoblink
明月大江
·
2014-08-18 15:00
Longest Palindromic Substring Part I
findthelongestpalindromicsubstringinS.Thisinterestingproblemhasbeenfeaturedinthefamous Greplinprogrammingchallenge,andisaskedquiteofteninthe
interview
s.Why
u014691362
·
2014-08-15 21:00
LeetCode
特定字符输出及二分搜索 简单面试编程题
asfollowlayer 1*layer 2 * ***layer 3 * *** *****layer 4 * *** ***** *******package com.java.
interview
.t
wx237409500
·
2014-08-13 19:53
简单字符串输出
二分法搜索
Java
一道简单的支付宝面试题
昨天在网上偶尔看到一位前辈写的支付宝面经,里面HR问了一道简单的不能再简单的java编程题:从屏幕输入字符串,然后将字符串反转之后再打印出来正好对Scanner不太记得了,所以又写了一个练手:package
interview
苦_咖啡
·
2014-08-13 10:54
找工作
一道简单的支付宝面试题
昨天在网上偶尔看到一位前辈写的支付宝面经,里面HR问了一道简单的不能再简单的java编程题:从屏幕输入字符串,然后将字符串反转之后再打印出来正好对Scanner不太记得了,所以又写了一个练手:package
interview
cyp331203
·
2014-08-13 10:00
面试题,子线程10次子线程2执行20次与主线程100次来回循环执行50次
//面试题,子线程2执行10次子线程2执行20次 与主线程100次来回循环执行50次 public class
interview
{ public static void main(String[]
�u之
·
2014-08-10 22:41
小练习
面试题,子线程10次与主线程100次来回循环执行50次
//面试题,子线程10次与主线程100次来回循环执行50次 public class
interview
{ public static void main(String[] args) { final
�u之
·
2014-08-10 15:52
子线程
小练习
How Volatile in Java works ? Example of volatile keyword in Java
HowtouseVolatilekeywordinJavaWhatisVolatilevariableinJavaandwhentouseVolatilevariableinJavaisfamousmulti-threading
interview
questioninJava
interview
s.Thoughmanyprogrammerknowswhatisavolatilevariable
jy00509336
·
2014-08-06 14:00
How Volatile in Java works ? Example of volatile keyword in Java
keywordinJavaWhat is Volatile variableinJava and whentouse Volatile variableinJava isfamous multi-threading
interview
question
jy00509336
·
2014-08-06 14:00
volatile
上一页
91
92
93
94
95
96
97
98
下一页
按字母分类:
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
其他