当前位置: 首页>>代码示例>>C#>>正文


C# IKey.CompareTo方法代码示例

本文整理汇总了C#中IKey.CompareTo方法的典型用法代码示例。如果您正苦于以下问题:C# IKey.CompareTo方法的具体用法?C# IKey.CompareTo怎么用?C# IKey.CompareTo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IKey的用法示例。


在下文中一共展示了IKey.CompareTo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: SearchKey

		/// <summary>
		/// Search the key in current node only, if key exits, return the key, otherwise, possibleNode is next node's 
		/// segment id where the key is possibly stored.
		/// </summary>
		/// <param name="target"></param>
		/// <returns></returns>
		public IKey SearchKey(IKey target, ref int pos)
		{
			//Debug.Assert(this.m_keyNums >= ((m_order-1) >> 2));
			pos = 0;
			while (pos < this.m_keyNums && target.CompareTo(this.m_keys[pos])>0)
				pos ++;
			if (pos < this.m_keyNums && target.CompareTo(this.m_keys[pos])==0)
			{
				//found
				return this.m_keys[pos];
			}
			else
			{
				//not found
				return null;
			}
		}
开发者ID:luanzhu,项目名称:OOD.NET,代码行数:23,代码来源:BNode.cs

示例2: ReplaceKeyDataWSuccessor

		public bool ReplaceKeyDataWSuccessor(IKey oldKey, IKey successor, int pos)
		{
			Debug.Assert(pos < this.m_keys.Length);
			Debug.Assert(m_keys[pos].CompareTo(oldKey) == 0);
			Debug.Assert(oldKey.CompareTo(successor) < 0);

			m_keys[pos] = successor;

			this.m_dirty = true;

			return true;
		}
开发者ID:luanzhu,项目名称:OOD.NET,代码行数:12,代码来源:BNode.cs


注:本文中的IKey.CompareTo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。