leetcode刷題(51) 22 括號生成

2021-10-02 10:06:29 字數 1218 閱讀 8248

給出 n 代表生成括號的對數,請你寫出乙個函式,使其能夠生成所有可能的並且有效的括號組合。

例如,給出 n = 3,生成結果為:

[

"((()))",

"(()())",

"(())()",

"()(())",

"()()()"

]

思路:只要有左括號就可以新增

class solution 

public void helper(int left,int right,string str)

if(left>0)

if(right>0&&right>left)

}}

思路2:

這其實是可以通過回溯來進行解決的問題,也就是dfs

class solution 

int right = n;

int left = n;

linkedlist stack = new linkedlist()

;addparenthesis

(right,left,stack,res)

;return res;

} string getres

(linkedlist stack)

return res;

} public void

addparenthesis

(int right,

int left,linkedlist stack,arraylist res)

if(left>right)

if(left<

0||right<0)

stack.

addlast

("(");

// left--;

addparenthesis

(right,left-

1,stack,res)

; stack.

removelast()

; stack.

addlast

(")");

// right--;

addparenthesis

(right-

1,left,stack,res)

; stack.

removelast()

;}}

開始刷題LeetCode

今天決定開始刷題,每天至少一題,如果題目確實沒有解決出來沒有關係,但是要保證每天至少接觸了一道新的題目!一定要堅持下去,現在是個菜鳥可能會感覺有點難度,堅持下去,總有一天會好的!今天是第一天,做的第乙個題目 reverse words in a string given an input strin...

leetcode刷題歷程

難度 簡單 題目 給定乙個整數陣列 nums 和乙個目標值 target,請你在該陣列中找出和為目標值的那 兩個 整數,並返回他們的陣列下標。你可以假設每種輸入只會對應乙個答案。但是,你不能重複利用這個陣列中同樣的元素。示例 給定 nums 2,7,11,15 target 9 因為 nums 0 ...

LeetCode刷題總結

123 4567 891011 12 元素交換 swap a 1 a 3 sort排序 sort a.begin a.end 陣列顛倒 reverse a.begin a.end 陣列元素置為0 memset a,0,a.size 陣列取值 a.push back 定義二維陣列 vector vec...