鱼C论坛

 找回密码
 立即注册
查看: 1010|回复: 0

[技术交流] C++刷leetcode(22. 括号生成)【深度优先搜索】

[复制链接]
发表于 2020-4-17 15:32:38 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 糖逗 于 2020-5-8 17:58 编辑

题目描述:
数字 n 代表生成括号的对数,请你设计一个函数,用于能够生成所有可能的并且 有效的 括号组合。

 

示例:

输入:n = 3
输出:[
       "((()))",
       "(()())",
       "(())()",
       "()(())",
       "()()()"
     ]

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/generate-parentheses
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

#include <iostream>
#include <vector>
#include <string>
using namespace std; 


bool valid(string temp){
    int count = 0;
    for(char cha : temp){
        if(count < 0) return false;
        if(cha == '(')count ++;
        if(cha == ')')count --;
    }
    return count == 0;
}
void dfs(int n, string temp, vector<string>& res){
    if(temp.size() > n*2) return;
    if(temp.size() == n*2 &&valid(temp)) res.push_back(temp);
    string store[2] = {"(", ")"};
    for(int i = 0; i < 2 ;i++){
        temp+=store[i];
        dfs(n, temp, res);
        temp.erase(temp.end()-1);
    }
}
vector<string> generateParenthesis(int n) {
    vector<string> res;
    dfs(n, "(", res);
    return res;
}


int main(void){
        int number ;
        cin >> number;
        vector<string>res = generateParenthesis(number);
        for(int i = 0; i < res.size(); i++){
                cout << res[i] << " ";
        }
        cout << endl;
        return 0;
}


注意事项:
1.深度优先搜索,深度优先搜索的解题套路。

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 06:38

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表