- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个作业要求我用随机变量填充一个堆栈,然后按 FILO 顺序将它们弹出。虽然我设法让它只使用 int 类型来工作,但现在我似乎需要更改它以实现一个 double 组,它会使用 double 类型的字符填充数组并继续从中弹出 double 堆叠直到它为空并打印它们。我试过只更改两个函数中的类型,但不断出现错误,我不确定为什么。到目前为止,这就是我所拥有的。任何帮助将不胜感激。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#define STACK_SIZE 10
#define STACK_FULL -2
#define STACK_EMPTY -1
#define NORMAL 0
int myerror = NORMAL;
void push(double [],
double, // input - data being pushed onto the stack
double **, // input/output - pointer to pointer to the top of stack
int); // constant - maximum capacity of stack
double // output - data being popped out from the stack
pop(double [], // input/output - the stack
double **); // input/output - pointer to pointer to top of stack
void push(double stack[],
double item,
double **top,
int max_size)
{
stack[++(**top)] = item;
}
double pop(double stack[],
double **top)
{
return stack[(**top)--];
return 0.0;
}
int main()
{
double s[STACK_SIZE];
double *s_top = NULL;
srand(time(NULL));
char randChar = ' ';
double i = 0;
double j=0;
double randNum = 0;
for (i = 0; i < STACK_SIZE; i++){
randNum = 33 + (double)(rand() % ((126-33)+ 1 ));
randChar = (double) randNum;
push(s,randChar, &(*s_top), STACK_SIZE);
printf ("Random characters: %c\n", randChar);}
printf("-----------\n");
for(j=STACK_SIZE; j>0; j--){
printf("Random characters: %c\n", pop(s, & *s_top));
}
return 0;
}
顺便说一句,这些是错误
stack.c: In function ‘push’: stack.c:28: error: array subscript is not an integer stack.c: In function ‘pop’: stack.c:35: error: array subscript is not an integer stack.c: In function ‘main’: stack.c:42: warning: initialization makes pointer from integer without a cast stack.c:53: warning: passing argument 3 of ‘push’ from incompatible pointer type stack.c:60: warning: passing argument 2 of ‘pop’ from incompatible pointer type stack.c:60: warning: format ‘%c’ expects type ‘int’, but argument 2 has type ‘double’ stack.c:60: warning: format ‘%c’ expects type ‘int’, but argument 2 has type ‘double’
基本上这是我在使用整数类型之前所拥有的并且它正在工作,现在他给出了指示并希望我们将其更改为 double 类型并且我试图将它们合并但无济于事。
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define STACK_SIZE 10
#define STACK_EMPTY -1
void push(char [], // input/ouput - the stack
char, // input - data being pushed onto the stack
int *, // input/output - pointer to the index of the top of stack
int); // constant - maximum size of stack
char // output - data being popped out from the stack
pop(char [], // input/output - the stack
int *); // input/output - pointer to the index of the top of stack
void push(char stack[],
char item,
int *top,
int max_size){
stack[++(*top)] = item;
}
char pop(char stack[],
int *top){
return stack[(*top)--];
// Return STACK_EMPTY if the stack is empty.
return STACK_EMPTY;
}
int main(){
char s[STACK_SIZE];
int s_top = STACK_EMPTY; // Pointer points to the index of the top of the stack
srand(time(NULL));
char randChar = ' ';
int i = 0;
int j=0;
int randNum = 0;
for (i = 0; i < STACK_SIZE; i++){
randNum = 33 + (int)(rand() % ((126-33)+ 1 ));
randChar = (char) randNum;
push(s,randChar, &s_top, STACK_SIZE);
printf ("Random characters: %c\n", randChar);}
printf("-----------\n");
for(j=STACK_SIZE; j>0; j--){
printf("Random characters: %c\n", pop(s, &s_top));
}
return 0;
}
好的,这就是他要求我们做的,我认为编辑而不是对每个人发表长篇评论会更容易
“您之前在堆栈上实现了压入和弹出操作,这里要求您再次执行此操作,但有 4 个主要更改,如下所述:
push() 的第三个参数和 pop() 的第二个参数将用于采用双**顶的形式,即指向存储当前栈顶元素地址的指针。
为您创建了一个全局整型变量 myerror。它的值可以是 STACK_FULL、STACK_EMPTY 和 NORMAL。在 push() 和 pop() 函数中使用此变量来通知 main() 函数操作的状态。 "
最佳答案
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define STACK_SIZE 10
typedef struct
{
double items[STACK_SIZE];
double* next;
} Stack;
void init(Stack* s)
{
s->next = s->items;
}
void push(Stack* s, double val)
{
if (s->next >= s->items + STACK_SIZE)
fprintf(stderr, "stack overflow\n");
else
{
*s->next++ = val;
printf("push %g\n", val);
}
}
void pop(Stack* s)
{
if (s->next == s->items)
fprintf(stderr, "stack underflow\n");
else
printf("pop %g\n", *--s->next);
}
int main(void)
{
Stack s;
init(&s);
srand(time(NULL));
for (int i = 0; i < STACK_SIZE; i++)
push(&s, (double)rand());
printf("-----------\n");
for (int i = 0; i < STACK_SIZE; i++)
pop(&s);
return 0;
}
关于c - 使用 double 组推送和弹出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18883590/
我连续有 11 个图像,如果鼠标悬停在其中一个图像上,我希望弹出一个弹出窗口。所以每 11 个图像都有不同的弹出窗口。我已经有一些代码可以执行此操作,但它仅适用于第一张图像。 代码:index.htm
是否可以从 NSColorWell 制作一个 NSColorPanel“弹出”,几乎像一个弹出菜单? 我不喜欢它作为调色板的实现方式,因为有时它与哪个 NSColorWell 关联并不明显。 谢谢!
我正在考虑一个想法,基本上我想要一个带有 NSPopoverController 的 NSStatusItem 。我读到了人们遇到的所有问题,但我只是想尝试一下。现在有干净的方法吗?我见过的所有版本都
如何获取 JS 打开的弹出窗口的 url。这是我的代码: var _url = 'someurlhere'; var popupwindow = window.open(_url, "Popu
我正在设计一个网页,我希望当用户单击链接时,弹出窗口(新窗口)将打开一个链接网页。我的代码如下所示 function win(add,w,h) { window.open(add,"","widt
我正在寻找 C 中的简单堆栈实现,并找到了类似的东西: void pop(struct stack **top) { struct stack *temp; temp = malloc(s
我正在尝试使用 paypal 实现登录,我有 2 个不同的主机域 1- www.example.com 2- www.example.de 对于 paypal,我需要为此目的选择一个返回 URL,我选
我正在尝试找出如何复制此处显示的“弹出式” View 动画:https://imgur.com/a/irFqdiP .我正在使用当前代码来显示我的 viewController,但目前只有一个淡入淡出
有谁知道在 Windows 2000 或更高版本上以编程方式关闭 CD 托盘的方法?打开 CD 托盘存在,但我似乎无法关闭它,尤其是在 W2k 下。 如果可能的话,我特别想从批处理文件中寻找一种方法来
当您访问http://www.daniweb.com时你得到一个弹出窗口,这叫什么 + 知道怎么做吗? 感谢您的回复,只有模态加载动画的最简单方法是什么,即页面加载时动画显示以及动画何时完成? ASP
我正在为 Unity 引擎中的音频过滤器创建一个 C# 脚本。 我的问题是,在通过我的过滤器运行后,生成的音频具有一致且频繁的“咔哒声”、“砰砰声”或“跳过声”。听起来有点像旧 radio 。 我不确
我必须隐藏浏览器的地址栏。我正在使用这段代码: var winFeature = 'location=no,toolbar=no,menubar=no,scrollbars=yes,r
推荐一个button 弹起pickerview的源码,也可以作为工具类使用。 利用inputview 做键盘弹起动画。该如何做呢? 1.继承uiview 2.重写属性&方法
我在这里有一个问题,我已经工作了几个小时。 我正在导入一个 Excel 文件,并使用此代码来执行此操作: Dim objExcel As Excel.Application Di
我基本上是从 UITableViewController 推送 UIView,它包含的只是 UIWebView。但是,当我删除 UIView 以返回到 UITableView 时,应用程序崩溃了。 -
我有几个由导航 Controller 控制的 View Controller 。 例如,viewController A 和 viewController B 都可以将 viewController
我使用新的Gmail API为用户创建草稿。 API响应提供了新创建的消息ID。 然后,我可以使用URL https://mail.google.com/mail/#drafts?compose=[m
Redis列表实现了哪种内部数据结构以实现这一目的?链表将需要O(n)索引,而数组将需要O(n)左/右推/弹出。 最佳答案 根据official documentation,它们被实现为linked
我正在使用 WPF Popup 控件,它显示背景为黑色。我在其中放置了一个 StackPanel 并设置了 Background="Transparent",但这没有帮助。
我希望页面内的容器在事件时占据页面的整个宽度并覆盖在其他所有内容上。这是我目前所拥有的,但它没有按我想要的方式工作: $(function() { $('.main a').click( fu
我是一名优秀的程序员,十分优秀!