CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of Queue
C++
/*
 * Дек (свързан списък)
 *
 * @author Михаил Николов
 * @version 1.0
 * @date 4.06.2011
 *
 */
#include <iostream>
100 Views
no comments
 
C++
/*
 * Опашка (свързан списък)
 *
 * @author Михаил Николов
 * @version 1.0
 * @date 4.06.2011
 *
 */
#include <iostream>
91 Views
no comments
 
C#
[Serializable, ComVisible(true), DebuggerTypeProxy(typeof(QueueDebugView)), DebuggerDisplay("Count = {Count}")]
public class Queue : ICollection, IEnumerable, ICloneable
{
    // Fields
    private object[] _array;
    private int _growFactor;
    private int _head;
    private const int _MinimumGrow = 4;
    private const int _ShrinkThreshold = 0x20;
    private int _size;
by Athens Springer   October 29, 2009 @ 12:59pm
Tags: C#, Queue
228 Views
no comments
 
C#
#region Namespace
using System;
using System.Linq;
using System.Text;
using System.Data;
using System.Diagnostics;
using System.Messaging;
using System.Collections.Generic;
#endregion End of Namespace
by Rags   July 29, 2009 @ 2:04am
157 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate