Quick and easy FIFO queue class

Quick and easy FIFO queue class 1.1

Quick and easy FIFO queue class 1.1 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 311
  • Released: Jun 7, 2007

Quick and easy FIFO queue class 1.1 Description

Quick and easy FIFO queue class is an easy First-In-First-Out queue class based on Python's List data structure.

Quick and easy FIFO queue class 1.1 Keywords

Quick and easy FIFO queue class Bookmark

Hyperlink code:
Hyperlink for Forum code:

Quick and easy FIFO queue class 1.1 Script Download Notice

Top 4 Download periodically updates information of Quick and easy FIFO queue class 1.1 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Quick and easy FIFO queue class 1.1 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Deque collection class

... collections.deque(). It uses a dictionary as the underlying data structure for the deque (pronounced "deck", short for "double-ended queue", a generalization of stacks and queues) which provides O(1) performance for appends and pops from either end.   ...
Python

A queue for string data

This script is a queue data structure, for string data only, which looks like a File object. This class takes care of the list.append and .join mess, which is needed for fast string ...
Python

Fifo as single linked lists

Fifo mean "First In First Out". This script  creates a container, which only allows element insertion and removal and where the first element inserted is the first element removed. ...
Python

Priority queue script

Priority queues are a kind of container that allows specification of the relative order of the data.   ...
Python

Criteria based cascading priority queue

This module provides a simple criteria-based priority queue with "priority cascading".The criteria argument should be a ... an "all pass" criterion at the end; the queue will add all non-matching items with the least priority.ill add >a ...
Python