程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> Skip List, C#實現

Skip List, C#實現

編輯:C#入門知識

溫習下數據結構, C#版的Skip List實現

 

\\Skip List namespace Ln.SkipList
{
    /// <summary>
    /// the values of list is ascend.
    /// </summary>
    public class SkipList
    {
        private SkipNode head;
        private System.Random randomFa = new System.Random();

        public SkipList(){}
        /// <summary>
        /// Initialize skip list
        /// </summary>
        /// <returns></returns>
        public bool Init()
        {
            head = new SkipNode(0, null, null);
            return true;
        }

        /// <summary>
        /// Clean skip list
        /// </summary>
        /// <returns></returns>
        public bool Clear()
        {
            head = null;
            return true;
        }

        /// <summary>
        /// Insert value to skip list
        /// </summary>
        /// <param name="value"></param>
        /// <returns>if the value exists in the list already, return false.</returns>
        public bool Insert(int value)
        {
          

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved