- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我的老师给我布置了一道作业,要求我们在堆栈中push
和pop
元素。
输入应为:-
First line of input must contain no. of elements in the stack.
Second line of input must contain the choice of user (i.e.) whether to PUSH (i.e. entering
'1'
) or POP element (i.e. entering'2'
).If PUSH operation has been selected as user's choice; then third line of input must contain the element to be pushed into stack.
the next line of input must contain either
'y'
or'n'
as a reply to if the user wishes to continue these operations.
测试用例 1
输入
3
//(capacity of stack)
1
//(selecting PUSH OR POP)
6
//(entering the element which is to entered)
y
//(to continue or not continue)
1
//(selecting PUSH OR POP)
4
//(entering the element which is to entered)
y
//(to continue or not continue)
1
//(selecting PUSH OR POP)
7
//(entering the element which is to entered)
y
//(to continue or not continue)
2
//(selecting PUSH OR POP)
n
//(to continue or not continue)
输出
deleted element is
7 4 6
针对上述问题我编写了如下代码:-
# include <stdio.h>
# include <stdlib.h>
struct Stack
{
int capacity;
int top;
int *array;
};
void push(struct Stack *stack, int a) //function to PUSH a character in the stack.
{
stack->array[++stack->top] = a;
}
int pop(struct Stack *stack) //function to POP a character in the stack.
{
return stack->array[stack->top--];
}
int main(void)
{
struct Stack obj;
obj.top = -1;
printf("Enter the capacity of stack\n");
scanf("%d", &obj.capacity); //Inputting the capacity of the stack.
obj.array = calloc(obj.capacity, sizeof(int));
int operation;
int element;
char continuation;
do
{
printf("\nEnter 1 if you want to PUSH or 2 for POP\n");
scanf("%d", &operation);
printf("\nEnter the element which is to be pushed\n");
scanf("%d", &element);
scanf("%*c"); //To ignore any newline in stdin buffer.
printf("\nEnter 'y' if you want to continue else enter 'n'\n");
scanf("[a-z]%c", &continuation);
if(operation == 1)
{
if(obj.top < obj.capacity)
{
push(&obj, element);
}
else
{
printf("Error\n");
return EXIT_FAILURE;
}
}
else if(operation == 2)
{
printf("deleted element is\n");
while(obj.top != -1) //will POP all elements on the stack and print it.
{
printf("%d", pop(&obj));
if(obj.top != 0)
{
printf(" ");
}
}
}
else
{
printf("Wrong operation specified\n");
return EXIT_FAILURE;
}
} while(continuation == 'y');
return 0;
}
我在上面的代码中遇到的问题是在输入以下内容后:-
3
1
6
y
程序关闭(即退出 do-while
循环)。然而,当我更改代码中的以下行时:-
字符延续;
到
char continuation = 'y';
它工作正常,直到我输入以下内容:-
3
1
6
y
1
4
y
1
7
y
这之后给我一个突然的输出:-
Error
然后退出程序。
我的问题是:-
Why my code does not work in the first case when i only write
char continuation;
?What is the "logical error" in the second case when I change
char continuation;
tochar continuation = 'y';
?
最佳答案
我可以通过删除[a-z]%c"
并将其替换为"%c"
来解决我的问题。
这是我的新(正确)代码。
# include <stdio.h>
# include <stdlib.h>
struct Stack
{
int capacity;
int top;
int *array;
};
void push(struct Stack *stack, int a) //function to PUSH a character in the stack.
{
stack->array[++stack->top] = a;
}
int pop(struct Stack *stack) //function to POP a character in the stack.
{
return stack->array[stack->top--];
}
int main(void)
{
struct Stack obj;
obj.top = -1;
printf("Enter the capacity of stack\n");
scanf("%d", &obj.capacity); //Inputting the capacity of the stack.
obj.array = calloc(obj.capacity, sizeof(int));
int operation;
int element;
char continuation;
do
{
printf("\nEnter 1 if you want to PUSH or 2 for POP\n");
scanf("%d", &operation);
if(operation == 1)
{
printf("\nEnter the element which is to be pushed\n");
scanf("%d", &element);
if(obj.top < obj.capacity)
{
push(&obj, element);
}
else
{
printf("Error\n");
return EXIT_FAILURE;
}
}
else if(operation == 2)
{
printf("deleted element is\n");
while(obj.top != -1) //will POP all elements on the stack and print it.
{
printf("%d", pop(&obj));
if(obj.top != 0)
{
printf(" ");
}
}
}
else
{
printf("Wrong operation specified\n");
return EXIT_FAILURE;
}
scanf("%*c"); //To ignore any newline in stdin buffer.
printf("\nEnter 'y' if you want to continue else enter 'n'\n");
scanf(" %c", &continuation);
} while(continuation == 'y');
return 0;
}
注意:- 我还避免按照评论中的建议交错 printf
。
无论如何,我仍然无法理解为什么我以前的代码不起作用。
附言
我终于弄错了,不是写 "[a-z]%c"
应该是 "%[a-z]c"
。
关于c - 数据结构 "stack"执行期间 do-while 循环中的逻辑错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58201848/
在编写代码时,当我编写 struct *Stack stack 时,代码无法工作,而当我像 struct Stack* stack 那样编写代码时,代码可以工作有人告诉我这两个代码之间的区别吗? 最佳
我的教授要我绘制堆栈吗?他想让我付诸行动吗?我觉得自己很愚蠢,但这不像任何人告诉我的那样!感谢您的帮助。 哇,你们真快。已经谢谢你了。完整的问题是:考虑两个堆栈,每个堆栈的大小为 n(即,每个堆栈最多
是new Stack[N]相当于new Stack[N]对于通用数据类型 Stack ? 编辑:虽然我知道最好避免混合泛型类型和数组,并且存在更强大的解决方案,但我的查询仍然存在:被广泛认可的教科书,
我正在尝试使用堆栈的 printf() 打印 stack.top() 的返回值,但它给出的格式不匹配。代码如下: int main(){ stack cards; char *ch1
我正在尝试做一个 dapp 项目。 我有一个堆栈太深的错误,但我不知道如何解决这个问题。 CompilerError: Stack too deep, try removing local varia
在哪里stack haddock (或 stack build --haddock )放置它生成的文档? 最佳答案 这取决于为“属于”生成黑线鳕的包的位置。 “本地”包的 Haddocks 是堆栈项目
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
基本上,我有 2 个文件(.adb 和 .ads)。我对 Ada 以及如何编译 2 个文件完全陌生。该程序是一个基本的堆栈实现。编译 .adb 文件时出现此编译错误。 $ gcc -c test_ad
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 5年前关闭。 Improve this questi
您好,我正在尝试在微服务架构中使用 ELK 堆栈,其中有许多服务分布在许多服务器上。 现在我已经配置了 Kibana 和 ElasticSearch。现在我的疑问是我必须在哪里安装 Logstash。
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
我正在学习 Haskell,但遇到了我没想到的异常“堆栈溢出”。 代码相当简单: type Reals = Double prod :: Reals -> Reals -> Reals prod a
在我的 PC(最新的 JDK 和编译器版本)上,我的程序运行得非常顺利。但在我教授的计算机上,她说她遇到了两个错误 1) Stack myStack= new Stack() 类型的非法开始 2) 非
当我尝试在调用跟踪后执行 ./stack.sh 时,我收到以下错误: `[Call Trace] ./stack.sh:217:source /home/work/devstack/stackrc
1 上下文 我参与了一个涉及大量 C 位和 FFI 的 Haskell 项目。所以我发现自己经常运行和重新运行命令,比如 $ stack build $ stack build --force-dir
关于 SO 上的堆栈的问题,终于!我的一生都让我走到了这一步。 所以我需要将我制作的一些相当大的自定义数据结构合并到一个堆栈中。我决定编写一个仅包含一个整数值的最小堆栈结构。这里是 - MODULE
我只是想知道为什么在括号之间嵌入表达式时会得到两个不同的成员列表,例如gl-stack。看起来,如果没有括号,表达式就会被完全求值,并且结果会立即传递到下一个管道组件。但通过括号,集合中的单个对象将被
是否可以保存Stack>在onSaveInstanceState . 是否可以通过另一种方式保存某些特定数据来管理 Activity 状态? 最佳答案 您无法将 View 保存到 bundle 中。无
这个问题已经有答案了: Why don't Java Generics support primitive types? (5 个回答) 已关闭 9 年前。 为什么我不能使用Stack ? 除了拳击之
基于数组的实现级别 #include "stack.h" void creat_stack(Stack *s) { s->Top = 0; } int isFull(Stack s) {
我是一名优秀的程序员,十分优秀!