1.学做交互就是学怎么做人,内在的修为决定了你未来的高度。2.积累自己的专业知识,多看一些设计网站上的文章。3.注重能够培养自己的思维和理念。4.多研究一些好的产品。5.找到一个实习或者正式工作,积累项目经验(http://cdc.tencent.com/interview_assistant.ht...
分类:
其他好文 时间:
2015-12-18 16:42:52
阅读次数:
125
原文:http://www.csdn.net/article/2015-01-19/2823604-ios-interview-questions常见问题你昨天/这周学习了什么?你为什么热衷于软件开发?你对哪一种控制系统比较熟悉?是否参与过GitHub项目?是否参与过GitHub或其他同类型网站的i...
分类:
移动开发 时间:
2015-12-17 18:56:34
阅读次数:
180
转自: https://anders.unix.se/2015/10/26/interview-with-dennis-ritchie-2003/Interview with Dennis Ritchie (2003)In 2003 I was running a website called Un...
分类:
其他好文 时间:
2015-12-15 12:19:55
阅读次数:
202
QuickSortJava Code: 1 import java.util.*; 2 public class quickSort{ 3 public static void main(String [] args){ 4 int [] arr = new int[]{4,...
分类:
其他好文 时间:
2015-12-12 10:58:46
阅读次数:
129
Data Stream MedianNumbers keep coming, return the median of numbers at every time a new number added.Have you met this question in a real interview?Ex...
分类:
其他好文 时间:
2015-12-08 22:01:30
阅读次数:
154
Q1:Why are you interested in working for our company?为什么有兴趣在我们公司工作?A1:Because your company has a good sales record. 因为你们公司有良好的销售记录 。A2:Because your op...
分类:
其他好文 时间:
2015-12-08 18:22:12
阅读次数:
205
1. binary tree inorder traversal 不能用recursive写 (LC原题)2. 比如有个数组F={1,3, 4, 5, 2, 0}, A=3, 那么F[A]=5, F[F[A]]=0, F[F[F[A]]]=1....这样下去求第N个数是多少. from: 1poin...
分类:
其他好文 时间:
2015-12-05 11:06:38
阅读次数:
209
1.空中网面试题1
packagecom.kongzhongwang.interview;
importjava.util.concurrent.ArrayBlockingQueue;
importjava.util.concurrent.BlockingQueue;
//myeclipse强大功能:将代码直接复制到项目的src路径下可以自动相应生成包名和类名
/**
*
*空中网面试题1:现有程序代码..
分类:
编程语言 时间:
2015-11-26 15:31:15
阅读次数:
212
Merge Sorted ArrayGiven two sorted integer arrays A and B, merge B into A as one sorted array.Have you met this question in a real interview?YesWhich ...
分类:
其他好文 时间:
2015-11-25 06:40:10
阅读次数:
138
HDS(11.16.2015):How to design an non-stop website like Google or Amazon?What design patterns are you using?Implement a queue with two stacks.Quick-sor...
分类:
其他好文 时间:
2015-11-17 06:52:04
阅读次数:
184