我需要創建一個具有彈出功能的堆棧,將元素彈出堆棧。它需要用C編寫幷包含兩個浮點變量(float1,float2)。我不知道如何做到這一點,有人可以幫助。C --- pop()函數中的堆棧
-2
A
回答
0
使用std :: stack。這是documentation。
2
如果您需要幫助,我可以提供的最好的方法就是向您提出問題。爲了編寫彈出式操作,我們需要先進行操作。我對嗎?否則,你會如何彈出一些東西?你需要將2個花車推入這個結構中,這是否正確?如果我告訴你寫一個可以節省2個浮點數的push函數,你會如何編寫這樣的函數?
0
如果你用c編寫,有一種通用的編程方法。下面是一個示例如下: 頭
typedef void *ElementAddr;
typedef void (*PfCbFree)(ElementAddr);
typedef struct StackRecord
{
ElementAddr *array;
int elemsize;
int loglength;
int alloclength;
PfCbFree freefn;
} *Stack;
/* Create a new stack */
Stack stack_create(int elemsize, PfCbFree freefn);
/* Dispose the stack */
void stack_dispose(Stack stk);
/* Make the given stack empty */
void stack_make_empty(Stack stk);
/* Return true if the stack is empty */
int stack_is_empty(Stack stk);
/* Insert a new element onto stack */
void stack_push(Stack stk, ElementAddr elemaddr);
/* Delete the top element off the stack */
void stack_pop(Stack stk);
/* Fetch the top element from the stack */
void stack_top(Stack stk, ElementAddr elemaddr);
/* Fetch & Delete the top element from the stack */
void stack_top_and_pop(Stack stk, ElementAddr elemaddr);
的.cpp
#define MIN_STACK_SIZE (4)
/* Create a new stack */
Stack
stack_create(int elemsize, PfCbFree freefn)
{
Stack stk;
stk = malloc(sizeof(struct StackRecord));
if (stk == NULL) {
fprintf(stderr, "Out of memory\n");
exit(1);
}
stk->array = malloc(elemsize * MIN_STACK_SIZE);
if (stk->array == NULL) {
fprintf(stderr, "Out of memory\n");
exit(1);
}
stk->elemsize = elemsize;
stk->loglength = 0;
stk->alloclength = MIN_STACK_SIZE;
}
/* Dispose the stack*/
void
stack_dispose(Stack stk)
{
stack_make_empty(stk);
free(stk->array);
free(stk);
}
/* Make the given stack empty*/
void
stack_make_empty(Stack stk)
{
if (stk->freefn) {
int i;
for (i = 0; i < stk->loglength; ++i) {
stk->freefn((char *)stk->array +
i * stk->elemsize);
}
}
stk->loglength = 0;
}
/* Return true if the stack is empty*/
int
stack_is_empty(Stack stk)
{
return stk->loglength == 0;
}
static void
stack_grow(Stack stk)
{
stk->alloclength *= 2;
stk->array = realloc(stk->array,
stk->alloclength * stk->elemsize);
}
/* Insert a new element onto stack */
void
stack_push(Stack stk, ElementAddr elemaddr)
{
ElementAddr target;
if (stk->loglength == stk->alloclength)
stack_grow(stk);
target = (char *)stk->array + stk->loglength * stk->elemsize;
memcpy(target, elemaddr, stk->elemsize);
stk->loglength++;
}
/* Delete the top element off the stack */
void
stack_pop(Stack stk)
{
ElementAddr target;
if (stack_is_empty(stk)) {
fprintf(stderr, "Empty stack\n");
exit(1);
}
if (stk->freefn) {
target = (char *)stk->array +
(stk->loglength-1) * stk->elemsize;
stk->freefn(target);
}
stk->loglength--;
}
/* Fetch the top element from the stack */
void
stack_top(Stack stk, ElementAddr elemaddr)
{
void *target = (char *)stk->array +
(stk->loglength-1) * stk->elemsize;
memcpy(elemaddr, target, stk->elemsize);
}
/* Fetch & Delete the top element from the stack */
void
stack_top_and_pop(Stack stk, ElementAddr elemaddr)
{
ElementAddr target;
if (stack_is_empty(stk)) {
fprintf(stderr, "Empty stack\n");
exit(1);
}
target = (char *)stk->array +
(stk->loglength-1) * stk->elemsize;
memcpy(elemaddr, target, stk->elemsize);
stk->loglength--;
}
您可以將其用於任何數據類型。這裏是一個測試代碼
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "generic-stack.h"
void strfreefn(ElementAddr elemaddr)
{
free(*(char **)elemaddr);
}
int
main(int argc, char **argv)
{
Stack int_stk, str_stk;
int i;
char *names[] = {
"C", "C++", "Jave", "C#", "Python",
"PHP", "Basic", "Objective C", "Matlab", "Golang"
};
/* test integer stack */
printf("Test integer stack\n");
int_stk = stack_create(sizeof(int), NULL);
for (i = 0; i < 10; ++i) {
stack_push(int_stk, &i);
}
while (!stack_is_empty(int_stk)) {
int val;
stack_top_and_pop(int_stk, &val);
printf("%d\n", val);
}
stack_dispose(int_stk);
/* test string stack */
printf("Test string stack\n");
str_stk = stack_create(sizeof(char *), strfreefn);
for (i = 0; i < 10; ++i) {
char *copy = strdup(names[i]);
char *dest;
stack_push(str_stk, ©);
}
while (!stack_is_empty(str_stk)) {
char *dest;
stack_top_and_pop(str_stk, &dest);
printf("%s\n", dest);
free(dest);
}
stack_dispose(str_stk);
return 0;
}
相關問題
- 1. main函數的C函數沒有推動棧中的堆棧
- 2. 堆棧中的push和pop矩陣(openGL)
- 3. 使用push和pop的堆棧
- 4. (C++)無法從堆棧對象中調用push()和pop()
- 5. C中的堆棧函數移除結束函數
- 6. C++ STL堆棧:如果是安全的POP()
- 7. C++堆棧函數和錯誤處理
- 8. C sprintf函數,使用malloc或堆棧
- 9. 彙編堆棧3函數
- 10. 使用堆棧和push和pop函數將BST轉換爲數組
- 11. 在C/C++中瞭解函數調用的堆棧框架?
- 12. 遞歸函數中的堆棧溢出
- 13. 函數參數名稱和C中堆棧幀的變量名?
- 14. 字符堆棧,字符串堆棧,整數堆棧,整數數組堆棧等
- 15. MEAN堆棧更新函數
- 16. 函數調用,堆棧
- 17. jQuery bug,slidetoggle()函數堆棧
- 18. 無法顯示堆棧中的最後一個項pop()
- 19. 爲什麼不能在add()中執行pop()內的堆棧
- 20. C中的鏈接堆棧Pop導致分段錯誤,但Push不行!
- 21. D3堆疊面積圖堆棧函數
- 22. 查找堆棧數量最多隻使用PUSH和POP操作
- 23. c中的堆棧損壞
- 24. C中的堆棧分配
- 25. C++中的清除堆棧
- 26. C中的堆棧實現
- 27. C中堆棧的數組實現
- 28. 堆棧數組中的C++ - 問題
- 29. C++:在堆棧
- 30. 堆棧vs C/Java中的堆
是這功課...... ?? – nikoo28
這絕對是功課。你沒有提供答案幫助! – Malkocoglu