- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想处理字符(运算符)来操作一些数字。但关键是角色来自堆栈。当我声明 Char 类型堆栈并使用 top() 方法获取字符(运算符)时,它在 strchr 函数中不起作用。我不知道为什么。我真的很想知道如何修复它,什么是错误的。
这是在 C++ 编程中。
这是我的主要代码
int main() {
string c;
stack<char> postfix_expression;
double result = 0;
postfix_expression.push('+');
postfix_expression.push('1');
postfix_expression.push('3');
result = read_and_evaluate(postfix_expression);
cout << result << endl;
return 0;
}
这是我的 read_and_evaluate 函数..
double read_and_evaluate(stack<char>& arithmetic_expression ){
stack<double> numbers;
for(int i =0; i < arithmetic_expression.size() ; ++i){
char c = arithmetic_expression.top();
if (isdigit(c)){
numbers.push((double)c - 48);
cout << (int)c - 48 << endl;
}else if(strchr("+-*/", c) != NULL){
evaluate_stack(numbers, c);
cout << c << endl;
cout << numbers.top() << endl;
}
arithmetic_expression.pop();
}
return numbers.top();
}
这是 evaluate_stack 函数
void evaluate_stack(stack<double>& operands, char operators) {
double operand2 = operands.top();
operands.pop();
double operand1 = operands.top();
operands.pop();
switch(operators) {
case '+':
operands.push(operand1 + operand2);
case '-':
operands.push(operand1 - operand2);
case '*':
operands.push(operand1 * operand2);
case '/':
if (operand2 != 0.0)
operands.push(operand1 / operand2);
else {
cout << "Error!: divide by zero\n";
break;
}
default:
break;
}
cout << operands.top() << endl;
}
是关于后缀表达式的。我想得到 3 1 + 4 的结果。但它只显示 3 1 1。
最佳答案
提醒一下。
for(int i =0; i < arithmetic_expression.size() ; ++i){
...
arithmetic_expression.pop();
}
逻辑上不正确。当您弹出堆栈顶部时,堆栈的大小会减 1。通过递增 i
并将其与堆栈的大小进行比较,您最终将忽略堆栈的一半。您可以使用以下方法解决此问题:
// There is no need for i
for ( ; arithmetic_expression.size() > 0; arithmetic_expression.pop()) {
...
}
关于c++ - 我的代码使用 strchr 有什么问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58515739/
我正在研究 CS50 习题集。在此函数中,我迭代一行以确保它符合某些规则:“方法 SP 请求-目标 SP HTTP-版本 CRLF”,其中 SP 是空格,CRLF 是回车/换行符。 我通过字符串的最后
我对 C 语言还很陌生,因为我只是将其作为入门类(class),并且我遇到了家庭作业问题。该程序的目标是将字符串类型的数组名称和动态选择的字符从循环传递给函数。该函数必须检查字符串中是否有所选字符,如
我正在查看 strchr() 的示例:http://www.cplusplus.com/reference/cstring/strchr/ 为什么这样可以正确找到索引?直觉上它看起来应该给出负索引:
我不明白为什么下面的 C 代码不起作用: int obtainStringLength(char* str, char c1, char c2) { char* firstOcurrence
我在以下代码中收到错误assignment makes pointer from integer without a cast,这是什么意思? char * splitter; if(splitter
这个问题在这里已经有了答案: Why does strchr take an int for the char to be found? (4 个答案) 关闭 5 年前。 尝试创建一个简单的函数来查
我尝试编写自己的 strchr() 方法实现。 现在看起来像这样: char *mystrchr(const char *s, int c) { while (*s != (char) c)
我的学期快结束了,我正在写一个函数来查找字符串中某个字符的编号,给定老师分配的函数原型(prototype)。我知道我一定是在做一些愚蠢的事情,但是这段代码要么被锁定,要么在我的函数中无限循环。 这是
我的任务是编写我自己的 strchr 版本,但它似乎不起作用。任何建议将不胜感激。这是: char *strchr (const char *s, int c) //we are looking fo
#include #include int main () { const char str[] = "http://www.tutorialspoint.com"; const ch
这行代码给我带来了段错误: g_object_set(G_OBJECT(data.udpsrc), "port", 5000, "caps", caps, NULL); 哪里 data.udpsrc
我正在使用一个用 C 编写的程序,该程序涉及比较带连字符的姓氏。例如,它可能会将 Mary Jay-Blige 与 Mary Kay-Blige 进行比较。查找连字符并将变量设置为其位置的代码是: A
我正在尝试重载 >> 运算符以读取单个(使用 enum Symbol {e,a,b,c,d}; 创建)符号: istream & operator >> (istream & is, Symbol &
我正在为 C++ 练习编写 ROT13。但是这里的这段代码返回错误并且无法编译,我不明白为什么!我在以下几行中发布了一段代码 string encode(string &x) { char a
所以我正在尝试检查一个字符串,看看它是否: 有 8 个或更多字符 至少有一个大写字母 至少有一个小写字母 至少有以下字符之一 .,?!;:_!@# 这是我的代码: #include #include
这个问题在这里已经有了答案: How does strchr implementation work (5 个答案) 关闭 7 年前。 char a[20]="this is"; cout<
我想处理字符(运算符)来操作一些数字。但关键是角色来自堆栈。当我声明 Char 类型堆栈并使用 top() 方法获取字符(运算符)时,它在 strchr 函数中不起作用。我不知道为什么。我真的很想知道
我正在深入研究 C 中的指针和字符串,但我仍然不习惯一些概念。我尝试实现 strchr() 函数的一个版本——与 string.h 中的相同——出于学习目的,但一些基本的东西仍然不正确。 这是我的代码
我有以下内容: LPSTR email // Has data in it already LPSTR index=strchr(email,'@'); 现在我想插入一个新字符串: LPSTR use
我正在为一个类(class)编写一个 C 程序,该类(class)要求我获取请求行并将其分解为后续部分。这是出于学习目的,所以我可以期待一个相当标准的请求行。 考虑到这个问题,我打算使用某种 for(
我是一名优秀的程序员,十分优秀!