Golang 구현 대기열 및 스택

1332 단어 Golang
대기열:
//  
package Lstruct

import "errors"

type Queue []interface {}

func (q *Queue) Push(x interface{}) {
	*q = append(*q, x)
}

func (q *Queue) Pop() (interface{}, error) {
	if len(*q) == 0 {
		return nil, errors.New("Can't pop an empty queue")
	}
	top := (*q)[0]
	*q = (*q)[1:]
	return top, nil
}
func (q Queue) Top() (interface{}, error){
	if len(q) == 0 {
		return nil, errors.New("Can't top an empty queue")
	}
	return q[0], nil
}
func (q Queue) IsEmpty() bool {
	return (len(q) == 0)
}

func (q Queue) Len()int{
	return len(q)
}

스택:
// 
package Lstruct

import "errors"

type Stack []interface{}

func (s *Stack) Push (x interface{}){
	*s = append(*s, x)
}

func (s *Stack) Pop() (interface{}, error){
	temp := *s
	if len(temp) == 0{
		return nil, errors.New("Can't pop an empty stack")
	}
	x := temp[len(temp) - 1]
	*s = temp[:len(temp) - 1]
	return x, nil
}

func (s Stack) Top() (interface{}, error){
	if len(s) == 0 {
		return nil, errors.New("Can't top en empty stack")
	}
	return s[len(s) - 1], nil
}

func (s Stack) Len()int{
	return len(s)
}

func (s Stack) IsEmpty() bool {
	return (len(s) == 0)
}

github 주소:https://github.com/golibec/Lstruct.git
후속적으로 각종 데이터 구조와 주류 알고리즘을 지속적으로 보완할 것이다.

좋은 웹페이지 즐겨찾기