回溯算法實際上一個類似枚舉的搜索嘗試過程,主要是在搜索嘗試過程中尋找問題的解,當發(fā)現(xiàn)已不滿足求解條件時,就 “回溯” 返回,嘗試別的路徑?;厮莘ㄊ且环N選優(yōu)搜索法,按選優(yōu)條件向前搜索,以達到目標。但當探索到某一步時,發(fā)現(xiàn)原先選擇并不優(yōu)或達不到目標,就退回一步重新選擇,這種走不通就退回再走的技術(shù)為回溯法,而滿足回溯條件的某個狀態(tài)的點稱為 “回溯點”。許多復雜的,規(guī)模較大的問題都可以使用回溯法,有“通用解題方法”的美稱。
成都創(chuàng)新互聯(lián)公司服務(wù)項目包括婁煩網(wǎng)站建設(shè)、婁煩網(wǎng)站制作、婁煩網(wǎng)頁制作以及婁煩網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,婁煩網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到婁煩省份的部分城市,未來相信會繼續(xù)擴大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
回溯算法的基本思想是:從一條路往前走,能進則進,不能進則退回來,換一條路再試。
鏈接:https://leetcode-cn.com/tag/backtracking/
來源:力扣(LeetCode)
著作權(quán)歸作者所有。商業(yè)轉(zhuǎn)載請聯(lián)系作者獲得授權(quán),非商業(yè)轉(zhuǎn)載請注明出處。
本文主要總結(jié)一下回溯算法的一些題目。語言主要是Golang。
第一種是比較常規(guī)的回溯解法。
func subsets(nums []int) [][]int {
result := make([][]int, 0)
subsetsBT(&result, nums, []int{}, 0)
return result
}
func subsetsBT(result *[][]int, nums []int, temp []int, start int) {
//此處深拷貝temp,避免回溯的時候temp被修改后會影響之前保存的結(jié)果
c := make([]int, len(temp))
copy(c, temp)
*result = append(*result, c)
for i := start; i < len(nums); i++ {
temp = append(temp, nums[i])
subsetsBT(result, nums, temp, i+1)//不包含重復值
temp = temp[:len(temp)-1]
}
}
第二章方法就比較牛逼了,具體解釋參考此處。用二進制位的0,1表示是否選中當前位置的數(shù)。
func subsets(nums []int) [][]int {
result := make([][]int, 0)
n := 1 << uint(len(nums))
for i := 0; i < n; i++ {
temp := make([]int, 0)
for j := 0; j < len(nums); j++ {
if uint(i)>>uint(j)&1 == 1 {
temp = append(temp, nums[j])
}
}
result = append(result, temp)
}
return result
}
常規(guī)解法。當temp里的元素個數(shù)等于給定的K時,找到一個滿足條件的解。
func combine(n int, k int) [][]int {
var result = make([][]int, 0)
combineBT(n, k, 1, []int{}, &result)
return result
}
func combineBT(n, k, start int, temp []int, result *[][]int) {
if len(temp) == k {
c := make([]int, len(temp))
copy(c, temp)
*result = append(*result, c)
return
}
for i := start; i <= n; i++ {
temp = append(temp, i)
combineBT(n, k, i+1, temp, result)
temp = temp[0 : len(temp)-1]
}
}
常規(guī)解法,要先排序一下。每次先嘗試減去當前元素,要是減去后還大于0,則表示可以繼續(xù)往下走。然后因為可以重復使用元素,所以回溯的時候從i開始繼續(xù)下一次。直到目標值減到0后,找到一個滿足條件的解空間。
func combinationSum(candidates []int, target int) [][]int {
var result = make([][]int, 0)
sort.Ints(candidates)
combinationSumBT(&result, candidates, []int{}, target, 0)
return result
}
func combinationSumBT(result *[][]int, candidates []int, temp []int, target int, start int) {
if target == 0 {
c := make([]int, len(temp))
copy(c, temp)
*result = append(*result, c)
return
}
for i := start; i < len(candidates); i++ {
if target-candidates[i] >= 0 {
target -= candidates[i]
temp = append(temp, candidates[i])
combinationSumBT(result, candidates, temp, target, i)//可以包含已經(jīng)用過的值,所以從i開始,
temp = temp[0 : len(temp)-1]//回溯
target += candidates[i]//得把當前用過的值再加回去。
} else {
return
}
}
}
和第一個很像,但是每個數(shù)字只能用一次且解空間不能包含重復解。
func combinationSum2(candidates []int, target int) [][]int {
sort.Ints(candidates)
var result = make([][]int, 0)
combinationSumBT2(&result, candidates, []int{}, target, 0)
return result
}
func combinationSumBT2(result *[][]int, candidates []int, temp []int, target int, start int) {
if target == 0 {
c := make([]int, len(temp))
copy(c, temp)
*result = append(*result, c)
return
}
for i := start; i < len(candidates); i++ {
if target-candidates[i] >= 0 {
//比如[10,1,2,7,6,1,5], target = 8
//排好序后[1,1,2,5,6,7,10]
//在第一個for循環(huán)里,先遍歷到第一個1,經(jīng)過一系列操作,得到解集[1,7]
//然后還是第一個for循環(huán)里,又遍歷到后面的1,現(xiàn)在是不需要[第二個1,7]這個解集了,所以跳過。
if i != start && candidates[i] == candidates[i-1] { //因為解空間不能有重復
continue
}
target -= candidates[i]
temp = append(temp, candidates[i])
combinationSumBT2(result, candidates, temp, target, i+1)//因為不能重復使用,所以從i+1開始
temp = temp[0 : len(temp)-1]
target += candidates[i]
} else {
return
}
}
}
func combinationSum3(k int, n int) [][]int {
var result = make([][]int, 0)
combinationSumBT3(&result, []int{}, k, n, 1)
return result
}
func combinationSumBT3(result *[][]int, temp []int, k int, target int, start int) {
//和第一個很像,在target的基礎(chǔ)上增加了一個k的限制。
if target == 0 && k == 0 {
c := make([]int, len(temp))
copy(c, temp)
*result = append(*result, c)
return
}
for i := start; i <= 9; i++ {
if target-i >= 0 {
target -= i
k--
temp = append(temp, i)
combinationSumBT3(result, temp, k, target, i+1)//每個組合不能有重復
temp = temp[0 : len(temp)-1]
target += i
k++
} else {
return
}
}
}
方法一是常規(guī)的回溯。
var wordsMap = map[int]string{2: "abc", 3: "def", 4: "ghi", 5: "jkl", 6: "mno", 7: "pqrs", 8: "tuv", 9: "wxyz"}
func letterCombinations(digits string) []string {
if len(digits) == 0 {
return []string{}
}
answer := make([]string, 0)
letterCombinationsBT(&answer, digits, "", 0)
return answer
}
func letterCombinationsBT(answer *[]string, digits string, temp string, index int) {
if len(temp) == len(digits) {
*answer = append(*answer, temp)
return
}
char := digits[index] - '0'
letter := wordsMap[int(char)]
//fmt.Println(int(char), letter)
for i := 0; i < len(letter); i++ {
letterCombinationsBT(answer, digits, temp+string(letter[i]), index+1)
}
return
}
方法二就比較牛逼了,把按的數(shù)字對應(yīng)的字母依次放到隊列中,然后和下一個數(shù)字的字母挨個拼,拼完再扔到隊尾。
比如我按了 "23" 對應(yīng) abc 和 def
我先在隊列[從左到右表示隊首到隊尾]初始化一個空字符串。
" "
然后遍歷第一個數(shù)字 2 ,對應(yīng)的字母是 abc,然后用隊列頭部的空字符串 "" 依次和abc做拼接,得到 "a", "b", "c",
然后依次從隊尾扔到隊列,現(xiàn)在隊列是
a b c
遍歷完2對應(yīng)的字母再繼續(xù)遍歷3的。3對應(yīng)def。取出隊首的"a",依次和后面的def拼接,得到 "ad", "ae", "af",然后扔到隊尾,現(xiàn)在隊列里是
b c ad ae af
繼續(xù)重復這個操作即可完成最后的遍歷,很方便。
c ad ae af bd be bf
ad ae af bd be bf cd ce cf
func letterCombinations(digits string) []string {
if len(digits) == 0 {
return []string{}
}
var words = [8]string{"abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"}
queue := make([]string, 0)
queue = append(queue, "")
for i := 0; i < len(digits); i++ {
n := digits[i] - '2'
size := len(queue)
for j := 0; j < size; j++ {
st := queue[0]
queue = queue[1:]
for _, ch := range words[n] {
temp := st + string(ch)
queue = append(queue, temp)
}
}
}
return queue
}
創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國云服務(wù)器,動態(tài)BGP最優(yōu)骨干路由自動選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機房獨有T級流量清洗系統(tǒng)配攻擊溯源,準確進行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動現(xiàn)已開啟,新人活動云服務(wù)器買多久送多久。
本文題目:leetcode回溯題目golang語言-創(chuàng)新互聯(lián)
當前鏈接:http://www.rwnh.cn/article34/dciise.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營銷、域名注冊、網(wǎng)站排名、網(wǎng)站策劃、動態(tài)網(wǎng)站、網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)