Linked List for interfaces of a queue Module

Source: Internet
Author: User
/*_##################################### #######################################
_##
_ ## Linked list for interfaces of a queue Module
_ ## Author: xwlee
_ ## Time: 2007.01.01
### Chang'an University
_ ## Development condition: win2003 SERVER + vc6.0
_##
_ ## Queue. h file
_####################################### ###################################*/
# Include <stdlib. h>

// Queue element type.
# Define queue_type int

// -------------------------- External interface -------------------------------
// Create a queue. The parameter specifies how many elements can be saved.
Int create_queue (size_t size );

// Destroy a queue
Int destroy_queue (void );

// Add a new element to the queue. The parameter is the element to be added.
Void myinsert (queue_type value );

// Remove an element from the queue and discard it.
Void mydelete (void );

// Return the value of the first element in the queue, but do not modify the queue.
Queue_type first (void );

// If the queue is empty, true is returned; otherwise, false is returned.
Int is_empty (void );

// If the queue is full, true is returned; otherwise, false is returned.
Int is_full (void );
// -------------------------- External interface -------------------------------

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.