c++带堆栈的括号验证器

发布于 2024-12-19 05:11:45 字数 1513 浏览 2 评论 0原文

我正在尝试编写一个程序,该程序将验证由括号组成的用户输入,以便使用堆栈进行正确嵌套。我试图在不使用 STL 容器或递归的情况下做到这一点。我在某种程度上遇到了障碍,我正在寻找正确方向的一点推动。我想我有点接近了,但我觉得我可能过于简单化了(我正在通过自学学习)

这是我到目前为止所得到的:

#include <iostream>
#include <string>
#include "ArrayStack.h"
using namespace std;

bool test(char *argg);

int main()
{
    string input;
    int size = 50;

    cout << "enter here: ";
    getline(cin, input);
    for (int i = 0; i < size; i++)
        test(input[i]);
}

bool test(char *argg)
{
    ArrayStack S;
    char D;
    while ( *argg ) {
        switch( *argg ) {

            case '[': case '{': case '(':
                S.push( *argg );
                break;

            case ']':
                if( S.isEmpty() )
                    return false;
                D = S.pop();
                if( D!='[' )
                    return false;
                break;

            case '}':
                if( S.isEmpty() )
                    return false;
                D = S.pop();
                if( D!='{' )
                    return false;
                break;

            case ')':
                if( S.isEmpty() )
                    return false;
                D = S.pop();
                if( D!='(' )
                   return false;
                break;

            default:
                return false;
        }// end switch
                   argg++;
    }// end while

    return S.isEmpty(); // return true if reach here with empty stack

}

感谢您提前提供的任何帮助

I'm trying to write a program that will validate a user input consisting of brackets for proper nesting using a stack. I am trying to do this without the use of STL containers or recursion. I have somewhat hit a road block and I'm looking for a little nudge in the right direction. I think I am kind of close, but I feel like I may be oversimplifying it (I'm in the process of learning through self teaching)

Here is what I have so far:

#include <iostream>
#include <string>
#include "ArrayStack.h"
using namespace std;

bool test(char *argg);

int main()
{
    string input;
    int size = 50;

    cout << "enter here: ";
    getline(cin, input);
    for (int i = 0; i < size; i++)
        test(input[i]);
}

bool test(char *argg)
{
    ArrayStack S;
    char D;
    while ( *argg ) {
        switch( *argg ) {

            case '[': case '{': case '(':
                S.push( *argg );
                break;

            case ']':
                if( S.isEmpty() )
                    return false;
                D = S.pop();
                if( D!='[' )
                    return false;
                break;

            case '}':
                if( S.isEmpty() )
                    return false;
                D = S.pop();
                if( D!='{' )
                    return false;
                break;

            case ')':
                if( S.isEmpty() )
                    return false;
                D = S.pop();
                if( D!='(' )
                   return false;
                break;

            default:
                return false;
        }// end switch
                   argg++;
    }// end while

    return S.isEmpty(); // return true if reach here with empty stack

}

Thanks for any assistance in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

漫漫岁月 2024-12-26 05:11:45

如果有什么不同的话,那就是你把它弄得太复杂了,这

char inverse(char c){
   if(c==']') return '[';
   if(c=='}') return '{';
   if(c==')') return '('; 
   return c;
}
int stillvalid(char c, ArrayStack &stack){
   if(strchr("[{(", c))
        stack.push(c);
    else if(strchr("]})", c))
        if(stack.isEmpty() || inverse(c) != stack.pop())
            return 0;
    return 1;
}

int main(){
    int c;
    ArrayStack stack;
    while((c=getchar())!=EOF){
       if(!stillvalid((char)c, stack)){
           printf("bad\n");
           exit(0);
       }
    }
    printf("good\n");
    return 0;
}

应该是你所需要的。

If anything, you're overcomplicating it

char inverse(char c){
   if(c==']') return '[';
   if(c=='}') return '{';
   if(c==')') return '('; 
   return c;
}
int stillvalid(char c, ArrayStack &stack){
   if(strchr("[{(", c))
        stack.push(c);
    else if(strchr("]})", c))
        if(stack.isEmpty() || inverse(c) != stack.pop())
            return 0;
    return 1;
}

int main(){
    int c;
    ArrayStack stack;
    while((c=getchar())!=EOF){
       if(!stillvalid((char)c, stack)){
           printf("bad\n");
           exit(0);
       }
    }
    printf("good\n");
    return 0;
}

Should be all you need.

云裳 2024-12-26 05:11:45

使用输入 myfunc(42); 手动跟踪代码

,逐个字符地观察发生了什么。这应该指出你的错误。

Trace through your code by hand with the input myfunc(42);

Observe what happens, character by character. That should point you your errors.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文