コード例 #1
0
def test_append_empty():
    dll = Dll()
    dll.append(500)
    assert dll.head.prev is None
    assert dll.head.next_node is None
    assert dll.head.value == 500
    assert dll.head is dll.tail
コード例 #2
0
ファイル: que_.py プロジェクト: famavott/data-structures
class Queue(object):
    """Create Queue Class object."""
    def __init__(self):
        """Queue initiliazation.

        Composed of Doubly-Linked List attributes and methods.
        """
        self._dll = Dll()
        self._length = self._dll._length
        self.head = self._dll.head
        self.tail = self._dll.tail

    @property
    def length(self):
        """Use dll length method to return size of list."""
        return self._dll._length

    def enqueue(self, data):
        """Add node to queue at head."""
        self._dll.push(data)

    def dequeue(self):
        """Remove node from queue at tail."""
        return self._dll.shift()

    def peek(self):
        """Display next value that will be removed if dequeued is called."""
        if self.length == 0:
            return None
        return self._dll.tail.data

    def __len__(self):
        """Function overwrites built-in len function to show length."""
        return self.length
コード例 #3
0
def test_insert_empty():
    dll = Dll()
    dll.insert(500)
    assert dll.head.prev is None
    assert dll.head.next_node is None
    assert dll.head.value == 500
    assert dll.head is dll.tail
コード例 #4
0
ファイル: que_.py プロジェクト: famavott/data-structures
    def __init__(self):
        """Queue initiliazation.

        Composed of Doubly-Linked List attributes and methods.
        """
        self._dll = Dll()
        self._length = self._dll._length
        self.head = self._dll.head
        self.tail = self._dll.tail
コード例 #5
0
def test_pop():
    """Test pop function.

    Should remove first node and return value.
    """
    from dll import Dll
    test_dll = Dll()
    test_dll.push(1)
    assert test_dll.pop() == 1
コード例 #6
0
def test_shift():
    """Test shift function.

    Should remove last node and return value.
    """
    from dll import Dll
    test_dll = Dll()
    test_dll.append(8)
    assert test_dll.shift() == 8
コード例 #7
0
def test_dll_head_push_two():
    """Test list with two nodes.

    Head should point to next node.
    """
    from dll import Dll
    test_dll = Dll()
    test_dll.push(1)
    test_dll.push(2)
    assert test_dll.head.next_node.data == 1
コード例 #8
0
def test_dll_next_push_two():
    """Test list with two nodes.

    Second node should point back to head.
    """
    from dll import Dll
    test_dll = Dll()
    test_dll.push(1)
    test_dll.push(2)
    assert test_dll.head.next_node.prev.data == 2
コード例 #9
0
def test_remove_to_ensure_node_no_longer_exists():
    """Test remove method to ensure node is gone once remove is called."""
    from dll import Dll
    test_dll = Dll()
    test_dll.push(11)
    test_dll.push('target')
    test_dll.push(34)
    test_dll.remove('target')
    with pytest.raises(ValueError):
        test_dll._linkedlist.search('target')
コード例 #10
0
def test_remove():
    dll = Dll()
    dll.insert(500)
    dll.insert(600)
    back = dll.head
    dll.insert(700)
    dll.insert(800)
    front = dll.head
    dll.insert(900)
    dll.remove(700)
    assert back.prev is front
    assert front.next_node is back
コード例 #11
0
def test_remove_returns_node():
    """Test that correct node returned from search."""
    from dll import Dll
    test_dll = Dll()
    test_dll.push(11)
    test_dll.push('target')
    check = test_dll.head
    test_dll.push(34)
    assert test_dll.remove('target') == check
コード例 #12
0
def test_remove_head():
    dll = Dll()
    dll.append(500)
    dll.append(600)
    dll.append(700)
    dll.remove(500)
    assert dll.head.value == 600
    assert dll.head.next_node is dll.tail
    assert dll.head.prev is None
コード例 #13
0
def test_remove_tail():
    dll = Dll()
    dll.insert(500)
    dll.insert(600)
    dll.insert(700)
    dll.remove(500)
    assert dll.tail.value == 600
    assert dll.tail.prev is dll.head
    assert dll.tail.next_node is None
コード例 #14
0
def test_remove_head_of_list_with_multiple_nodes():
    """Test for remove method on list with multiple nodes."""
    from dll import Dll
    test_dll = Dll()
    test_dll.push(11)
    test_dll.push('target')
    check = test_dll.head
    assert test_dll.remove('target') == check
コード例 #15
0
def test_append_two_nodes():
    """Test append function to add to tail."""
    from dll import Dll
    test_dll = Dll()
    test_dll.append(9)
    test_dll.append('goat')
    assert test_dll.tail.data == 'goat'
コード例 #16
0
def test_remove_with_one_node():
    """Test remove if only one node."""
    from dll import Dll
    test_dll = Dll()
    test_dll.push('target')
    test_dll.remove('target')
    assert test_dll.head is None
コード例 #17
0
ファイル: que_.py プロジェクト: Casey0Kane/data-structures
class Queue(object):
    """Create queue data structure."""
    def __init__(self):
        """Initalize a Queue."""
        self._que = Dll()

    def enqueue(self, val):
        """Add an item to the queue."""
        self._que.push(val)

    def dequeue(self):
        """Remove item from queue."""
        return self._que.shift()

    def peek(self):
        """Returns next value in queue without dequeueing it."""
        if self._que.tail is not None:
            return self._que.tail.value
        return None

    def size(self):
        """Get length of queue."""
        return self._que.__len__()
コード例 #18
0
def test_insert():
    dll = Dll()
    dll.insert(500)
    first_node = dll.head
    dll.insert(600)
    assert dll.head.next_node is first_node
    assert dll.head.prev is None
    assert dll.head.value == 600
    assert dll.tail.prev is dll.head
コード例 #19
0
def test_append():
    dll = Dll()
    dll.append(500)
    first_node = dll.tail
    dll.append(600)
    assert dll.tail.prev is first_node
    assert dll.tail.next_node is None
    assert dll.tail.value == 600
    assert dll.head.next_node is dll.tail
コード例 #20
0
ファイル: deque.py プロジェクト: famavott/data-structures
class Deque(object):
    """Create deque class object."""
    def __init__(self):
        """Initialize new deque class object with a front and back."""
        self._dll = Dll()
        self.head = self._dll.head
        self.tail = self._dll.tail
        self._length = self._dll._length

    @property
    def length(self):
        """Use dll length method to return size of the deque."""
        return self._dll._length

    def append(self, data):
        """Use dll append method to add node with data at tail."""
        self._dll.append(data)

    def append_left(self, data):
        """Use dll push method to add node with data at front(head)."""
        self._dll.push(data)

    def pop(self):
        """Use dll shift method to remove node at back(tail)."""
        return self._dll.shift()

    def pop_left(self):
        """Use dll pop method to remove node from front(head)."""
        return self._dll.pop()

    def peek(self):
        """Use dll peek method to view node at back(tail)."""
        if self.length == 0:
            return None
        return self._dll.tail.data

    def peek_left(self):
        """Use dll peek method to view node at front(head)."""
        if self.length == 0:
            return None
        return self._dll.head.data

    def size(self):
        """Function uses build-in len function to show length."""
        return self.length
コード例 #21
0
class Deque(object):
    """Create deque data structure."""
    def __init__(self):
        """Initalize a Deque."""
        self._que = Dll()

    def append(self, val):
        """Add an item to the deque."""
        self._que.push(val)

    def appendleft(self, val):
        """Append value to the front of the deque."""
        self._que.append(val)

    def pop(self):
        """Pop value from end of the deque and returns it."""
        return self._que.pop()

    def popleft(self):
        """Pop value from front of the deque and return it."""
        return self._que.shift()

    def peek(self):
        """Return next value in deque without dequeueing it."""
        if self._que.head is not None:
            return self._que.head.value
        return None

    def peekleft(self):
        """Return value of popleft but leaves value in deque."""
        if self._que.tail is not None:
            return self._que.tail.value
        return None

    def size(self):
        """Get length of deque."""
        return self._que.__len__()
コード例 #22
0
def test_init_typeerror():
    """Can't initialize with parameter."""
    from dll import Dll
    with pytest.raises(TypeError):
        Dll(5)
コード例 #23
0
def test_append():
    """Test append function to add to tail."""
    from dll import Dll
    test_dll = Dll()
    test_dll.append(9)
    assert test_dll.tail.data == 9
コード例 #24
0
def test_pop_empty():
    dll = Dll()
    with pytest.raises(LookupError):
        dll.pop()
コード例 #25
0
def test_dll_attr():
    """Test if Dll object is created."""
    from dll import Dll
    test_dll = Dll()
    assert test_dll._length == 0
コード例 #26
0
def test_pop():
    dll = Dll()
    dll.append(500)
    dll.append(600)
    assert dll.pop() == 500
    assert dll.head.prev is None
コード例 #27
0
def test_remove_not_found():
    dll = Dll()
    dll.append(600)
    dll.insert(700)
    with pytest.raises(LookupError):
        dll.remove(500)
コード例 #28
0
def dll():
    """Create a doubly linked list."""
    from dll import Dll
    dll = Dll()
    return dll
コード例 #29
0
def test_dll_push_one():
    """Test pushing to an empty list."""
    from dll import Dll
    test_dll = Dll()
    test_dll.push(1)
    assert test_dll.head.data == 1
コード例 #30
0
def test_remove_with_empty_list():
    """Test to ensure error raised if remove called on empty list."""
    from dll import Dll
    test_dll = Dll()
    with pytest.raises(IndexError):
        test_dll.remove('a thing')
コード例 #31
0
def test_shift():
    dll = Dll()
    dll.append(500)
    dll.append(600)
    assert dll.shift() == 600
    assert dll.tail.next_node is None
コード例 #32
0
def test_remove_empty():
    dll = Dll()
    with pytest.raises(LookupError):
        dll.remove(500)
コード例 #33
0
ファイル: test_dll.py プロジェクト: famavott/data-structures
def test_dll_length_one():
    """Test pushing to an empty list."""
    from dll import Dll
    test_dll = Dll()
    test_dll.push(1)
    assert test_dll._length == 1
コード例 #34
0
def test_shift_empty():
    dll = Dll()
    with pytest.raises(LookupError):
        dll.shift()
コード例 #35
0
ファイル: deque.py プロジェクト: famavott/data-structures
 def __init__(self):
     """Initialize new deque class object with a front and back."""
     self._dll = Dll()
     self.head = self._dll.head
     self.tail = self._dll.tail
     self._length = self._dll._length
コード例 #36
0
ファイル: que_.py プロジェクト: Casey0Kane/data-structures
 def __init__(self):
     """Initalize a Queue."""
     self._que = Dll()