以下是在编程面试中排名前10的算法相关的概念,我会通过一些简单的例子来阐述这些概念。由于完全掌握这些概念需要更多的努力,因此这份列表只是作为一个介绍。 本文将从Java的角度看问题,包含下面的这些概念: 1. 字符串
1. 字符串如果IDE没有代码自动补全功能,所以你应该记住下面的这些方法。 1.
toCharArray() // 获得字符串对应的char数组
2.
Arrays.sort() // 数组排序
3.
Arrays.toString( char [] a) // 数组转成字符串
4.
charAt(intx) // 获得某个索引处的字符
5.
length() // 字符串长度
6.
length // 数组大小
2. 链表在Java中,链表的实现非常简单,每个节点Node都有一个值val和指向下个节点的链接next。 01.
class Node {
02.
int val;
03.
Node next;
04.
05.
Node( int x) {
06.
val = x;
07.
next = null ;
08.
}
09.
}
链表两个著名的应用是栈Stack和队列Queue。 栈: 01.
class Stack{
02.
Node top;
03.
04.
public Node peek(){
05.
if (top != null ){
06.
return top;
07.
}
08.
09.
return null ;
10.
}
11.
12.
public Node pop(){
13.
if (top == null ){
14.
return null ;
15.
} else {
16.
Node temp = new Node(top.val);
17.
top = top.next;
18.
return temp;
19.
}
20.
}
21.
22.
public void push(Node n){
23.
if (n != null ){
24.
n.next = top;
25.
top = n;
26.
}
27.
}
28.
}
队列: 01.
class Queue{
02.
Node first, last;
03.
04.
public void enqueue(Node n){
05.
if (first == null ){
06.
first = n;
07.
last = first;
08.
} else {
09.
last.next = n;
10.
last = n;
11.
}
12.
}
13.
14.
public Node dequeue(){
15.
if (first == null ){
16.
return null ;
17.
} else {
18.
Node temp = new Node(first.val);
19.
first = first.next;
20.
return temp;
21.
}
22.
}
23.
}
3. 树这里的树通常是指二叉树,每个节点都包含一个左孩子节点和右孩子节点,像下面这样: 1.
class TreeNode{
2.
int value;
3.
TreeNode left;
4.
TreeNode right;
5.
}
下面是与树相关的一些概念:
译者注:完美二叉树也隐约称为完全二叉树。完美二叉树的一个例子是一个人在给定深度的祖先图,因为每个人都一定有两个生父母。完全二叉树可以看成是可以有若干额外向左靠的叶子节点的完美二叉树。疑问:完美二叉树和满二叉树的区别?(参考:http://xlinux.nist.gov/dads/HTML/perfectBinaryTree.html) 4. 图图相关的问题主要集中在深度优先搜索(depth first search)和广度优先搜索(breath first search)。 下面是一个简单的图广度优先搜索的实现。 1) 定义GraphNode 01.
class GraphNode{
02.
int val;
03.
GraphNode next;
04.
GraphNode[] neighbors;
05.
boolean visited;
06.
07.
GraphNode( int x) {
08.
val = x;
09.
}
10.
11.
GraphNode( int x, GraphNode[] n){
12.
val = x;
13.
neighbors = n;
14.
}
15.
16.
public String toString(){
17.
return "value: " + this .val;
18.
}
19.
}
2) 定义一个队列Queue 01.
class Queue{
02.
GraphNode first, last;
03.
04.
public void enqueue(GraphNode n){
05.
if (first == null ){
06.
first = n;
07.
last = first;
08.
} else {
09.
last.next = n;
10.
last = n;
11.
}
12.
}
13.
14.
public GraphNode dequeue(){
15.
if (first == null ){
16.
return null ;
17.
} else {
18.
GraphNode temp = new GraphNode(first.val, first.neighbors);
19.
first = first.next;
20.
return temp;
21.
}
22.
}
23.
}
3) 用队列Queue实现广度优先搜索 01.
public class GraphTest {
02.
03.
public static void main(String[] args) {
04.
GraphNode n1 = new GraphNode( 1 );
05.
GraphNode n2 = new GraphNode( 2 );
06.
GraphNode n3 = new GraphNode( 3 );
07.
GraphNode n4 = new GraphNode( 4 );
08.
GraphNode n5 = new GraphNode( 5 );
09.
10.
n1.neighbors = new GraphNode[]{n2,n3,n5};
11.
n2.neighbors = new GraphNode[]{n1,n4};
12.
n3.neighbors = new GraphNode[]{n1,n4,n5};
13.
n4.neighbors = new GraphNode[]{n2,n3,n5};
14.
n5.neighbors = new GraphNode[]{n1,n3,n4};
15.
16.
breathFirstSearch(n1, 5 );
17.
}
18.
19.
public static void breathFirstSearch(GraphNode root, int x){
20.
if (root.val == x)
21.
System.out.println( "find in root" );
22.
23.
Queue queue = new Queue();
24.
root.visited = true ;
25.
queue.enqueue(root);
26.
27.
while (queue.first != null ){
28.
GraphNode c = (GraphNode) queue.dequeue();
29.
for (GraphNode n: c.neighbors){
30.
31.
if (!n.visited){
32.
System.out.print(n + " " );
33.
n.visited = true ;
34.
if (n.val == x)
35.
System.out.println( "Find " +n);
36.
queue.enqueue(n);
37.
}
38.
}
39.
}
40.
}
41.
}
输出: 1.
value: 2 value: 3 value: 5 Find value: 5
2.
value: 4
###NextPage### 5. 排序
|
Algorithm | Average Time | Worst Time | Space |
冒泡排序 | n^2 | n^2 | 1 |
选择排序 | n^2 | n^2 | 1 |
Counting Sort | n+k | n+k | n+k |
Insertion sort | n^2 | n^2 | |
Quick sort | n log(n) | n^2 | |
Merge sort | n log(n) | n log(n) | depends |
另外,这里有一些实现/演示:: Counting sort、Mergesort、 Quicksort、 InsertionSort。
对程序员来说,递归应该是一个与生俱来的思想(a built-in thought),可以通过一个简单的例子来说明。
问题: 有n步台阶,一次只能上1步或2步,共有多少种走法。
步骤1:找到走完前n步台阶和前n-1步台阶之间的关系。
为了走完n步台阶,只有两种方法:从n-1步台阶爬1步走到或从n-2步台阶处爬2步走到。如果f(n)是爬到第n步台阶的方法数,那么f(n) = f(n-1) + f(n-2)。
步骤2: 确保开始条件是正确的。
f(0) = 0;
f(1) = 1;
1.
public
static
int
f(
int
n){
2.
if
(n <=
2
)
return
n;
3.
int
x = f(n-
1
) + f(n-
2
);
4.
return
x;
5.
}
递归方法的时间复杂度是n的指数级,因为有很多冗余的计算,如下:
1.
f(5)
2.
f(4) + f(3)
3.
f(3) + f(2) + f(2) + f(1)
4.
f(2) + f(1) + f(2) + f(2) + f(1)
直接的想法是将递归转换为迭代:
01.
public
static
int
f(
int
n) {
02.
03.
if
(n <=
2
){
04.
return
n;
05.
}
06.
07.
int
first =
1
, second =
2
;
08.
int
third =
0
;
09.
10.
for
(
int
i =
3
; i <= n; i++) {
11.
third = first + second;
12.
first = second;
13.
second = third;
14.
}
15.
16.
return
third;
17.
}
对这个例子而言,迭代花费的时间更少,你可能也想看看Recursion vs Iteration。
动态规划是解决下面这些性质类问题的技术:
爬台阶问题完全符合上面的四条性质,因此可以用动态规划法来解决。
01.
public
static
int
[] A =
new
int
[
100
];
02.
03.
public
static
int
f3(
int
n) {
04.
if
(n <=
2
)
05.
A[n]= n;
06.
07.
if
(A[n] >
0
)
08.
return
A[n];
09.
else
10.
A[n] = f3(n-
1
) + f3(n-
2
);
//store results so only calculate once!
11.
return
A[n];
12.
}
位操作符:
OR (|) | AND (&) | XOR (^) | Left Shift (<<) | Right Shift (>>) | Not (~) |
1|0=1 | 1&0=0 | 1^0=1 | 0010<<2=1000 | 1100>>2=0011 | ~1=0 |
获得给定数字n的第i位:(i从0计数并从右边开始)
01.
public
static
boolean
getBit(
int
num,
int
i){
02.
int
result = num & (
1
<<i);
03.
04.
if
(result ==
0
){
05.
return
false
;
06.
}
else
{
07.
return
true
;
08.
}
09.
}
例如,获得数字10的第2位:
1.
i=1, n=10
2.
1<<1= 10
3.
1010&10=10
4.
10 is not 0, so return true;
解决概率相关的问题通常需要很好的规划了解问题(formatting the problem),这里刚好有一个这类问题的简单例子:
一个房间里有50个人,那么至少有两个人生日相同的概率是多少?(忽略闰年的事实,也就是一年365天)
计算某些事情的概率很多时候都可以转换成先计算其相对面。在这个例子里,我们可以计算所有人生日都互不相同的概率,也就是:365/365 * 364/365 * 363/365 * … * (365-49)/365,这样至少两个人生日相同的概率就是1 – 这个值。
01.
public
static
double
caculateProbability(
int
n){
02.
double
x =
1
;
03.
04.
for
(
int
i=
0
; i<n; i++){
05.
x *= (
365.0
-i)/
365.0
;
06.
}
07.
08.
double
pro = Math.round((
1
-x) *
100
);
09.
return
pro/
100
;
10.
}
组合和排列的区别在于次序是否关键。
如果你有任何问题请在下面评论。
参考/推荐资料:
1. Binary tree
2. Introduction to Dynamic Programming
3. UTSA Dynamic Programming slides
4. Birthday paradox
5. Cracking the Coding Interview: 150 Programming Interview Questions and Solutions, Gayle Laakmann McDowell