java 常考算法_JAVA程序员的必杀技,面试中常考的8个经典算法题,过程精妙,代码精炼...

总有一些题,超越了岁月,即便是经过了新框架的层层迭代,它依然散发着令人回味无穷的味道。下面的几个笔试题目,是JAVA面试中经常遇见的,大家一定要牢记于心,可别复习到了到时候又说不出来。我就吃过这种亏,不说啦,下面来看题目。

二维数组中的查找

面试题

在一个二维数组中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。

@代码

public class Test7 {

public static void main(String[] args) {

int[][] array = new int[][] {{1,2},{2,3},{3,4}};

boolean find1 = find(3, array);

boolean find2 = find(8, array);

System.out.println(find1); // 输出true

System.out.println(find2); // 输出 false

} /**

* @param target

* @param array

* @return

*/

public static boolean find(int target, int [][] array) {

int row = 0;

int col = array[0].length-1; while(row=0){ if(array[row][col] == target) return true; else if(array[row][col] > target) col-=1; else row+=1;

}

return false; } }1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

链表题

面试题

输入一个链表,按链表从尾到头的顺序返回一个ArrayList

代码

class ListNode { int val; ListNode next = null;

ListNode(int val) { this.val = val; }

}

public class Test8 {

public static void main(String[] args) {

ArrayList printListFromTailToHead = printListFromTailToHead(new ListNode(10));

System.out.println(printListFromTailToHead.size());

for (Integer integer : printListFromTailToHead) { System.out.println(integer);

}

} /**

* * @param listNode

* @return

*/

public static ArrayList printListFromTailToHead(ListNode listNode) { ArrayList arr = new ArrayList(); ListNode p = listNode; ArrayList stack = new ArrayList(); while(p!=null){ stack.add(p.val); p = p.next; } int n = stack.size(); for(int i=n-1;i>=0;i--){ arr.add(stack.get(i)); } return arr; }

}1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

队列题

面试题

用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型

代码

public class Test9 { static Stack stack1 = new Stack(); static Stack stack2 = new Stack(); public static void main(String[] args) { push(1); push(2); push(3); System.out.println(stack1.size()); System.out.println(stack2.size()); pop(); System.out.println(stack1.size()); System.out.println(stack2.size());

} public static void push(int node) { stack1.push(node); } /** * pop操作 复杂 * @return */ public static int pop() { int temp; while(!stack1.empty()){ temp = stack1.pop(); stack2.push(temp); } int res = stack2.pop(); while(!stack2.empty()){ temp = stack2.pop(); stack1.push(temp); } return res; }}1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

数组题

面试题

把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。 输入一个非递减排序的数组的一个旋转,输出旋转数组的最小元素。

例如数组 {3,4,5,1,2} 为 {1,2,3,4,5}的一个旋转,该数组的最小值为1。

代码

public class Test10 {

public static void main(String[] args) {

int[] array = new int[] {1,2,4,3,5,6,0,-1,-100};

int minNumberInRotateArray = minNumberInRotateArray(array );

System.out.println(minNumberInRotateArray);

} public static int minNumberInRotateArray(int [] array) { if(array.length==0){ return 0; } for(int i=0;i array[i+1]){ return array[i+1]; } } return array[0]; }

}1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

斐波那契数列问题

面试题

大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项 [科普] 斐波那契数列指的是这样一个数列 0, 1,1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233,377,610,987,1597,2584,4181,6765,10946,17711,28657,46368…

代码

public class Test11 {

public static void main(String[] args) {

int fibonacci = fibonacci(10);

System.out.println(fibonacci);

} public static int fibonacci(int n) { if (n<=0) return 0; int a=1,b = 1;int temp; for(int i=2;i

}1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

青蛙上台阶问题

面试题

一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法(先后次序不同算不同的结果)

代码

public class Test12 {

public static void main(String[] args) {

int jumpFloor = jumpFloor(18);

System.out.println(jumpFloor);

} public static int jumpFloor(int target) { if(target <= 0) return 0; if(target <= 2) return target; int a=1,b=2; int temp; for(int i=3;i<=target;i++){ temp = a; a = b; b += temp; } return b; }

}1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

变态青蛙跳台阶问题

面试

一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。 求该青蛙跳上一个n级的台阶总共有多少种跳法。

代码

public class Test13 {

public static void main(String[] args) {

int jumpFloorII = jumpFloorII(18);

System.out.println(jumpFloorII);

} public static int jumpFloorII(int target) { if(target<=0) return 0; int sumPath = 0; int path = 0; for(int i=0;i

}1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

矩形覆盖问题

面试题

我们可以用 2×1 的小矩形横着或者竖着去覆盖更大的矩形。请问用n个2*1的小矩形无重叠地覆盖一个2×n的大矩形,总共有多少种方法?

代码

public class Test14 {

public static void main(String[] args) {

int rectCover = rectCover(10);

System.out.println(rectCover);

} public static int rectCover(int target) { if(target <= 0) return 0; if(target <= 2) return target; int a=1,b=2; int temp; for(int i=3;i<=target;i++){ temp = a; a = b; b += temp; } return b; }

}1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

这些题目虽然看上去比较简单,但是蕴含了丰富的编程思想,大家可以经常练习,提高思维能力。这是面试题中经常出现的,还有一些类似的题目,大家有的话也可以提出来,我们一起进步!

文章来源: blog.csdn.net,作者:爱吃早餐的程序员,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/weixin_39076203/article/details/110404021

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值