trying out the code in readme
This commit is contained in:
		
							parent
							
								
									3ae088f445
								
							
						
					
					
						commit
						1ccc72c16d
					
				
							
								
								
									
										10
									
								
								README.md
								
								
								
								
							
							
						
						
									
										10
									
								
								README.md
								
								
								
								
							| 
						 | 
				
			
			@ -5,11 +5,11 @@ A handy collection of C algorithms compiled into one header file for use anywher
 | 
			
		|||
 | 
			
		||||
### Stack
 | 
			
		||||
The stack is probably the most basic storage structure, using the 'first-in, first-out' approach.
 | 
			
		||||
* Stack createStack()
 | 
			
		||||
* void freeStack(Stack *s)
 | 
			
		||||
* void pushToStack(int item, Stack *s)
 | 
			
		||||
* int popFromStack(Stack *s)
 | 
			
		||||
* void printStack(Stack s)
 | 
			
		||||
* ```c Stack createStack()```
 | 
			
		||||
* ```c void freeStack(Stack *s)```
 | 
			
		||||
* ```c void pushToStack(int item, Stack *s)```
 | 
			
		||||
* ```c int popFromStack(Stack *s)```
 | 
			
		||||
* ```c void printStack(Stack s)```
 | 
			
		||||
 | 
			
		||||
### Queue
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue