mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 14:18:20 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			383 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			383 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// File: stack.go
 | 
						|
// Created Time: 2022-11-26
 | 
						|
// Author: Reanon (793584285@qq.com)
 | 
						|
 | 
						|
package chapter_stack_and_queue
 | 
						|
 | 
						|
type Stack interface {
 | 
						|
	// Push 元素入栈
 | 
						|
	Push(num int)
 | 
						|
	// Peek 访问栈顶元素
 | 
						|
	Peek() any
 | 
						|
	// Pop 元素出栈
 | 
						|
	Pop() any
 | 
						|
	// Size 栈的长度
 | 
						|
	Size() int
 | 
						|
	// IsEmpty 栈是否为空
 | 
						|
	IsEmpty() bool
 | 
						|
	// toString 栈输出为字符串
 | 
						|
	toString() string
 | 
						|
}
 |