Update and rename circular_queue_III.py to circular_queue_list.py

This commit is contained in:
marina 2023-08-07 18:06:56 -07:00 committed by GitHub
parent ad2c24a519
commit 18c33edfb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# author: bt3gl
# this is my favorite implementation <3
class Node:
@ -13,17 +12,14 @@ class Node:
class CircularQueue:
def __init__(self, k: int):
self.capacity = k
self.count = 0
self.head = None
self.tail = None
def enqueue(self, value: int) -> bool:
if self.count == self.capacity:
return False
if self.count == 0:
self.head = Node(value)
self.tail = self.head
@ -31,40 +27,30 @@ class CircularQueue:
new_node = Node(value)
self.tail.next = new_node
self.tail = new_node
self.count += 1
return True
def dequeue(self) -> bool:
if self.count == 0:
return False
self.head = self.head.next
self.count -= 1
return True
def front(self) -> int:
if self.count == 0:
return -1
return self.head.value
def rear(self) -> int:
if self.count == 0:
return -1
return self.tail.value
def is_empty(self) -> bool:
return self.count == 0
def is_full(self) -> bool:
return self.count == self.capacity