순환 대기열의 구현(Go)
1580 단어 go데이터 구조와 알고리즘
//
type CircularQueue struct {
q []interface{}
capacity int
head int
tail int
}
구현 작업은 다음과 같습니다.
package main
import "fmt"
//
type CircularQueue struct {
q []interface{}
capacity int
head int
tail int
}
//
func NewCircularQueue(n int) *CircularQueue {
if n == 0 {
return nil
}
return &CircularQueue{
q: make([]interface{}, n),
capacity: n,
head: 0,
tail: 0,
}
}
//
func (this *CircularQueue) IsEmpty() bool {
if this.head == this.tail {
return true
}
return false
}
//
func (this *CircularQueue) IsFull() bool {
if this.head == (this.tail + 1) % this.capacity {
return true
}
return false
}
//
func (this *CircularQueue) EnQueue(v interface{}) bool {
if this.IsFull() {
return false
}
this.q[this.tail] = v
this.tail = (this.tail + 1) % this.capacity
return true
}
//
func (this *CircularQueue) DeQueue() interface{} {
if this.IsEmpty() {
return false
}
v := this.q[this.head]
this.head = (this.head+1) % this.capacity
return v
}
//
func (this *CircularQueue) String() string {
if this.IsEmpty() {
return "empty queue!"
}
result := "head"
var i = this.head
for {
result += fmt.Sprintf("
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Go Fiber 및 PlanetScale로 REST API 구축 - 4부다시 사용자 핸들러에 UpdateUser라는 새 함수를 추가합니다. 업데이트 사용자를 main.go에 등록 이제 응용 프로그램을 다시 실행하십시오. 이전에 생성한 사용자를 업데이트합니다. 응답 사용자가 존재하지 않을...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.