usaa25/du3/program.c
2025-10-12 21:17:39 +02:00

57 lines
970 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define STACK_SIZE 10
struct stack{
float *values;
int size;
int capacity;
};
struct stack* create_stack (int capacity) {
struct stack* s = malloc (sizeof(struct stack));
if (s==NULL) {
printf("Error!\n");
exit(1);
}
s->values = malloc(capacity * sizeof(float));
if (s->values==NULL) {
printf("Error!\n");
free(s);
exit(1);
}
s->size = 0;
s->capacity = capacity;
return s;
}
void push_stack (struct stack* s, float value) {
if (s->size >= s->capacity) {
printf("Stack perepolnen!\n");
exit(1);
}
s->values[s->size] = value;
s->size++;
}
float pop_stack(struct stack* s) {
if (s->size <= 0) {
prinf("Erroe!\n");
exit(1);
}
s->size--;
return
}
void print_stack(struct stack* s) {
}
void destroy_stack (struct stack* s) {
}
int main() {
return 0;
}