Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
algorithmique
lib_2021_malaspinas
stack
Commits
6e8cc6fa
Commit
6e8cc6fa
authored
Nov 24, 2021
by
orestis.malaspin
Browse files
Merge branch '2-add-stack-data-stucture' into 'main'
Resolve "Add stack data stucture" Closes
#2
See merge request
!2
parents
714e23f4
5605029f
Changes
1
Hide whitespace changes
Inline
Side-by-side
stack.h
0 → 100644
View file @
6e8cc6fa
#ifndef _STACK_H_
#define _STACK_H_
typedef
struct
_stack
{
int
*
data
;
int
capacity
;
int
top
;
}
stack
;
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment