leetcode--Word Search

来源:互联网 发布:开票软件双击打不开 编辑:程序博客网 时间:2024/06/10 13:19

Given a 2D board and a word, find if the word exists in the grid.

The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically neighboring. The same letter cell may not be used more than once.

For example,
Given board =

[  ["ABCE"],  ["SFCS"],  ["ADEE"]]
word = "ABCCED", -> returns true,
word = "SEE", -> returns true,

word = "ABCB", -> returns false.


题意:给定一个二维数组,数组中存储着英文字符,判断某个英文序列,能否在数组中按照某个顺序找到。

每个字符只能被使用一次,每次只能向相邻的字符移动。

分类:数组,回溯


解法1:回溯,没有什么好说的,关键是边界判断。

[java] view plain copy
  1. public class Solution {  
  2.     public boolean exist(char[][] board, String word) {  
  3.         int rows = board.length;  
  4.         int cols = board[0].length;  
  5.         boolean[][] visited = new boolean[rows][cols];        
  6.         for (int i=0;i<board.length;i++) {    
  7.             for (int j=0;j<board[i].length;j++) {    
  8.                 if(board[i][j]==word.charAt(0)) {    
  9.                     visited[i][j] = true;    
  10.                     if(word.length()==1 || search(board,i,j,word.substring(1),visited)) {    
  11.                         return true;    
  12.                     }    
  13.                     visited[i][j] = false;    
  14.                 }    
  15.             }    
  16.         }    
  17.         return false;    
  18.     }  
  19.               
  20.     private boolean search(char[][] board, int i, int j, String word,  
  21.             boolean[][] visited) {  
  22.         if(word.length()==0return true;    
  23.         //四个走向    
  24.         int[][] direction = { {-1,0},{1,0},{0,-1},{0,1}};    
  25.         for(int k=0;k<direction.length;k++){  
  26.             int x = i+direction[k][0];  
  27.             int y = j+direction[k][1];  
  28.             if(x>=0&&x<board.length  
  29.                 &&y>=0&&y<board[0].length  
  30.                 &&!visited[x][y]  
  31.                 &&word.charAt(0)==board[x][y]){  
  32.                 visited[x][y] = true;                 
  33.                 if (word.length()==1 || search(board, x, y, word.substring(1), visited)) {    
  34.                     return true;    
  35.                 }    
  36.                 visited[x][y] = false;  
  37.             }  
  38.         }  
  39.         return false;  
  40.     }  
  41. }  


[java] view plain copy
  1. public class Solution {  
  2.     public boolean exist(char[][] board, String word) {  
  3.         int rows = board.length;  
  4.         int cols = board[0].length;  
  5.         boolean flag[][] = new boolean[rows][cols];  
  6.         for(int i=0;i<rows;i++){  
  7.             for(int j=0;j<cols;j++){  
  8.                 if(board[i][j]==word.charAt(0)){  
  9.                     flag[i][j] = true;  
  10.                     if(search(i,j,word.substring(1),rows,cols,flag,board)) return true;  
  11.                     flag[i][j] = false;  
  12.                 }  
  13.             }  
  14.         }  
  15.         return false;  
  16.     }  
  17.       
  18.     public boolean search(int row,int col,String str,int rows,int cols,boolean[][] flag,char[][] board){  
  19.         if(str.length()==0return true;  
  20.         int[] dirX = new int[]{1,-1,0,0};  
  21.         int[] dirY = new int[]{0,0,1,-1};  
  22.         for(int i=0;i<dirX.length;i++){  
  23.             int x = row+dirX[i];  
  24.             int y = col+dirY[i];  
  25.             if(x>=0&&x<rows&&y>=0&&y<cols&&!flag[x][y]&&board[x][y]==str.charAt(0)){  
  26.                 flag[x][y] = true;  
  27.                 if(search(x,y,str.substring(1),rows,cols,flag,board)) return true;  
  28.                 flag[x][y] = false;  
  29.             }  
  30.         }  
  31.         return false;  
  32.     }  
  33. }  

原文链接http://blog.csdn.net/crazy__chen/article/details/46425207