golang力扣leetcode 79.单词搜索

简介: golang力扣leetcode 79.单词搜索

79.单词搜索

79.单词搜索

题解

思路:dfs,最近写dfs好顺,好喜欢写dfs。。。

代码

type pair struct {
  x, y int
}
var dirs = []pair{{-1, 0}, {1, 0}, {0, -1}, {0, 1}}
func exist(board [][]byte, word string) bool {
  flag := false
  vis := make(map[pair]bool)
  n, m := len(board), len(board[0])
  var dfs func(x, y, idx int)
  dfs = func(x, y, idx int) {
    if word[idx] != board[x][y] {
      return
    }
    if idx == len(word)-1 {
      flag = true
      return
    }
    vis[pair{x, y}] = true
    for _, v := range dirs {
      nx, ny := x+v.x, y+v.y
      if nx >= 0 && nx < n && ny >= 0 && ny < m && !vis[pair{nx, ny}] {
        dfs(nx, ny, idx+1)
      }
    }
    vis[pair{x, y}] = false
  }
  for i, v := range board {
    for j := range v {
      dfs(i, j, 0)
      if flag {
        return flag
      }
    }
  }
  return flag
}
目录
相关文章
|
3月前
|
算法 索引
LeetCode(搜索插入位置)
如何使用二分查找算法来解决LeetCode上的“搜索插入位置”问题,确保时间复杂度为O(log n),并提供了详细的代码实现和分析。
17 2
|
3月前
|
索引
Leetcode第三十三题(搜索旋转排序数组)
这篇文章介绍了解决LeetCode第33题“搜索旋转排序数组”的方法,该问题要求在旋转过的升序数组中找到给定目标值的索引,如果存在则返回索引,否则返回-1,文章提供了一个时间复杂度为O(logn)的二分搜索算法实现。
26 0
Leetcode第三十三题(搜索旋转排序数组)
|
3月前
【LeetCode 39】700.二叉搜索树中的搜索
【LeetCode 39】700.二叉搜索树中的搜索
21 0
|
3月前
|
索引
力扣(LeetCode)数据结构练习题(3)------链表
力扣(LeetCode)数据结构练习题(3)------链表
102 0
|
3月前
力扣(LeetCode)数据结构练习题(2)
力扣(LeetCode)数据结构练习题(2)
35 0
|
3月前
|
存储
力扣(LeetCode)数据结构练习题
力扣(LeetCode)数据结构练习题
62 0
|
3月前
Leetcode(最后一个单词长度)
这篇文章介绍了两种解决LeetCode第58题的方法,即计算给定字符串中最后一个单词的长度,方法包括翻转字符串和逆向遍历统计。
23 0
|
3月前
【LeetCode 20】151.反转字符串里的单词
【LeetCode 20】151.反转字符串里的单词
25 0
|
5月前
|
算法
LeetCode第81题搜索旋转排序数组 II
文章讲解了LeetCode第81题"搜索旋转排序数组 II"的解法,通过二分查找算法并加入去重逻辑来解决在旋转且含有重复元素的数组中搜索特定值的问题。
LeetCode第81题搜索旋转排序数组 II
|
5月前
|
算法
LeetCode第74题搜索二维矩阵
文章讲解了LeetCode第74题"搜索二维矩阵"的解决方案,利用二分搜索法将问题简化,并通过数学转换找到二维矩阵中的对应元素,展示了将二维问题转化为一维问题的解题技巧。
LeetCode第74题搜索二维矩阵