本文整理汇总了C#中PriorityQueue.popup方法的典型用法代码示例。如果您正苦于以下问题:C# PriorityQueue.popup方法的具体用法?C# PriorityQueue.popup怎么用?C# PriorityQueue.popup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PriorityQueue
的用法示例。
在下文中一共展示了PriorityQueue.popup方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: testCase3
public void testCase3()
{
//測試PripriorityQueue
AsiaBoy[] b = new AsiaBoy[10];
b[0] = new AsiaBoy(20);
b[1] = new AsiaBoy(14);
b[2] = new AsiaBoy(0);
b[3] = new AsiaBoy(3);
b[4] = new AsiaBoy(6);
b[5] = new AsiaBoy(8);
b[6] = new AsiaBoy(12);
b[7] = new AsiaBoy(11);
b[8] = new AsiaBoy(4);
b[9] = new AsiaBoy(6);
PriorityQueue<AsiaBoy> q = new PriorityQueue<AsiaBoy>();
foreach (AsiaBoy boy in b)
q.Add(boy, boy.length);
q.popup();
List<QueueElement<AsiaBoy>>.Enumerator it = q.getEnumerator();
string message="";
while (it.MoveNext())
{
AsiaBoy boy = it.Current.obj;
message += "["+boy.length+ "]";
}
Debug.Log("[inside PripriorityQueue] = "+message);
}