当前位置: 首页 > article >正文

算法训练营day23(补),回溯3

import (

  "sort"

)

39. 组合总和

func combinationSum(candidates []int, target int) [][]int {

  //存储全部集合

  result := make([][]int, 0)

  if len(candidates) == 0 {

    return result

  }

  sort.Ints(candidates) //排序后面做剪枝

  //存储单次集合

  path := make([]int, 0)

  var backtrace func(candidates []int, target int, startIndex int)

  backtrace = func(candidates []int, target int, startIndex int) {

    if target == 0 {

      temp := make([]int, len(path))

      copy(temp, path)

      result = append(result, temp)

      return

    }

    for i := startIndex; i < len(candidates); i++ {

      if candidates[i] > target { //剪枝

        break

      }

      path = append(path, candidates[i])

      backtrace(candidates, target-candidates[i], i)

      //回溯处理

      path = path[:len(path)-1]

    }

  }

  backtrace(candidates, target, 0)

  return result

}

40. 组合总和 II

func combinationSum2(candidates []int, target int) [][]int {

  //存储全部集合

  result := make([][]int, 0)

  if len(candidates) == 0 {

    return result

  }

  sort.Ints(candidates) //排序后面做剪枝

  //记录数组每一个元素是否使用过

  user := make([]bool, len(candidates))

  //存储单次集合

  path := make([]int, 0)

  var backtrace func(candidates []int, target int, startIndex int)

  backtrace = func(candidates []int, target int, startIndex int) {

    if target == 0 {

      temp := make([]int, len(path))

      copy(temp, path)

      result = append(result, temp)

      return

    }

    for i := startIndex; i < len(candidates); i++ {

      if candidates[i] > target { //剪枝

        break

      }

      if i > 0 && candidates[i] == candidates[i-1] && user[i-1] == false { //过滤重复

        continue

      }

      path = append(path, candidates[i])

      user[i] = true

      backtrace(candidates, target-candidates[i], i+1)

      //回溯处理

      path = path[:len(path)-1]

      user[i] = false

    }

  }

  backtrace(candidates, target, 0)

  return result

}

//判断是否是回文

func isPalindrome(s string) bool {

  for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 {

    if s[i] != s[j] {

      return false

    }

  }

  return true

}

131. 分割回文串

func partition(s string) [][]string {

  //存储全部集合

  result := make([][]string, 0)

  if len(s) == 0 {

    return result

  }

  //存储单次集合

  path := make([]string, 0)

  var backtrace func(se string, startIndex int)

  backtrace = func(se string, startIndex int) {

    if startIndex == len(se) {

      temp := make([]string, len(path))

      copy(temp, path)

      result = append(result, temp)

      return

    }

    for i := startIndex; i < len(se); i++ {

     //对字符串进行切割

      str := se[startIndex : i+1]

      if isPalindrome(str) {

        path = append(path, str)

        backtrace(se, i+1)

        //回溯处理

        path = path[:len(path)-1]

      }

    }

  }

  backtrace(s, 0)

  return result

}


http://www.kler.cn/a/229875.html

相关文章:

  • uni-app 蓝牙开发
  • 工业AI质检 AI质检智能系统 尤劲恩(上海)信息科技有限公司
  • 【CSS in Depth 2 精译_062】第 10 章 CSS 中的容器查询(@container)概述 + 10.1 容器查询的一个简单示例
  • Ubuntu问题 -- 使用scp将本机文件传输至ubuntu服务器中
  • redis大key和热key
  • 富文本编辑器图片上传并回显
  • C#在既有数组中插入另一个数组:Array.Copy方法 vs 自定义插入方法
  • 点云transformer算法: FlatFormer 论文阅读笔记
  • 【软考设计师笔记】一篇文章带你了解数据库
  • 单片机和 ARM 的区别
  • 汽车零部件MES系统实施方案
  • 2024.2.5 vscode连不上虚拟机,始终waiting for server log
  • Django模板(一)
  • 查询sql表的时候数据量超出10000的解决办法
  • PyTorch 2.2 中文官方教程(十二)
  • vue3项目中使用mapv
  • 基于QPSO-LSTM的短期风电负荷MATLAB预测程序
  • 服务器和CDN推荐
  • http+域名+端口
  • 优雅的从HuggingFace下载模型
  • React18构建Vite+Electron项目以及打包
  • 假期算法提升(带你彻底掌握滑动窗口)
  • CSS:水平垂直居中
  • 【Jenkins】pipeline基本使用
  • Java赋能:大学生成绩量化新篇章
  • [英语学习][27][Word Power Made Easy]的精读与翻译优化