8個最常見卻最容易出錯的演算法題,面試幾乎都會考到,來測試下你能答出幾道?
前言
總有一些題,超越了歲月,即便是經過了新框架的層層迭代,它依然散發著令人回味無窮的味道。下面的幾個筆試題目,是JAVA面試中經常遇見的,大家一定要牢記於心,可別複習到了到時候又說不出來。我就吃過這種虧,不說啦,下面來看題目。
1. 二維陣列中的查詢
面試題
在一個二維陣列中(每個一維陣列的長度相同),每一行都按照從左到右遞增的順序排序,每一列都按照從上到下遞增的順序排序。請完成一個函式,輸入這樣的一個二維陣列和一個整數,判斷陣列中是否含有該整數。
程式碼
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<array.length && col>=0){
if(array[row][col] == target)
return true;
else if(array[row][col] > target)
col-=1;
else
row+=1;
}
return false;
}
}
2. 連結串列題
面試題
輸入一個連結串列,按連結串列從尾到頭的順序返回一個ArrayList
程式碼
class ListNode {
int val;
ListNode next = null;
ListNode(int val) {
this.val = val;
}
}
public class Test8 {
public static void main(String[] args) {
ArrayList<Integer> printListFromTailToHead = printListFromTailToHead(new ListNode(10));
System.out.println(printListFromTailToHead.size());
for (Integer integer : printListFromTailToHead) {
System.out.println(integer);
}
}
/**
*
* @param listNode
* @return
*/
public static ArrayList<Integer> printListFromTailToHead(ListNode listNode) {
ArrayList<Integer> arr = new ArrayList<Integer>();
ListNode p = listNode;
ArrayList<Integer> stack = new ArrayList<Integer>();
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;
}
}
3. 佇列題
面試題
用兩個棧來實現一個佇列,完成佇列的Push和Pop操作。 佇列中的元素為int型別
程式碼
public class Test9 {
static Stack<Integer> stack1 = new Stack<Integer>();
static Stack<Integer> stack2 = new Stack<Integer>();
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;
}}
4. 陣列題
面試題
把一個陣列最開始的若干個元素搬到陣列的末尾,我們稱之為陣列的旋轉。 輸入一個非遞減排序的陣列的一個旋轉,輸出旋轉陣列的最小元素。
例如陣列 {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.length-1;i++){
if(array[i] > array[i+1]){
return array[i+1];
}
}
return array[0];
}
}
5. 斐波那契數列問題
面試題
大家都知道斐波那契數列,現在要求輸入一個整數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<n;i++){
temp = a;
a = b;
b = temp + b;
}
return b;
}
}
6. 青蛙上臺階問題
面試題
一隻青蛙一次可以跳上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;
}
}
7. 變態青蛙跳臺階問題
面試
一隻青蛙一次可以跳上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<target;i++){
path = sumPath + 1;
sumPath = sumPath * 2 + 1;
}
return path;
}
}
8. 矩形覆蓋問題
面試題
我們可以用 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;
}
}
以上這些演算法題在面試中非常常見,屬於必考題,建議同學們收藏起來,反覆練習。
喜歡學習技術的小夥伴可以關注我的公眾號:Java學習指南,私信我進技術群,我們一起學習,共同進步。
相關文章
- 一道面試題牽出12個前端硬核知識點,你能答出幾個?面試題前端
- 面試現場簡單幾道java演算法題, 你能寫出幾道?面試Java演算法
- 面試中常見的幾道智力題 來看看你會做幾道(2)?面試
- 技術面試中常見的幾道智力題 來看看你會做幾道?面試
- 30道Web前端面試題,你能答出多少道?Web前端面試題
- 10道Linux常見面試題,你知道幾個?Linux面試題
- 這幾道Java集合框架面試題在面試中幾乎必問Java框架面試題
- 關於Tomcat的13道面試題,你能答對幾個?Tomcat面試題
- js非同步程式設計面試題你能答上來幾道JS非同步程式設計面試題
- 給你總結幾個ES下最容易踩的坑
- 大廠面試常見的幾道SQL題,看你能答嗎?面試SQL
- 27道Redis精選面試題,你會做幾題?Redis面試題
- 3道常見的vue面試題,你都會了嗎?Vue面試題
- 這是今年前端最常見的面試題,你都會了嗎?前端面試題
- 你能答對幾道SQL題?SQL
- 75 道 BAJT 高階 Java 面試題,你能答上幾道?Java面試題
- 75 道 BAJT 中高階 Java 面試題,你能答上幾道?Java面試題
- 【Java】幾道常見的秋招面試題Java面試題
- 上週我面了個三年 Javaer,這幾個問題都沒答出來Java
- 面試珍藏:最常見的20道Java面試題Java面試題
- 【Java】幾道讓你拿offer的面試題Java面試題
- 幾乎所有Web和移動應用都容易受攻擊Web
- 10 道資料結構演算法題,不看答案你會幾道題資料結構演算法
- 速看!這8道嵌入式面試題你都會嗎?面試題
- 女生最容易就業的5個專業,你知道幾個?就業
- 如果這10道關於資料庫的測試題你都會,面試必過!資料庫面試
- 動態規劃,這幾個問題最常見!動態規劃
- 好程式設計師分享JavaScript幾個最常見的錯誤程式設計師JavaScript
- JavaScript中常見的錯誤,你犯了幾個?JavaScript
- promise執行順序面試題令我頭禿,你能作對幾道Promise面試題
- 幾道Java筆試題Java筆試
- 這些javascript面試題,你做對了幾道?JavaScript面試題
- 談談OKHttp的幾道面試題HTTP面試題
- Python最常見的10道面試題及答案Python面試題
- 幾個常見的Python面試題分享,幫你順利求職Python面試題求職
- 小白程式設計師最容易踩的“坑”,你踩過幾個?程式設計師
- 這10道javascript筆試題你都會麼JavaScript筆試
- 幾個常見的MySQL效能測試工具RQMySql