[C#] ArrayList 를 사용한 Quick SORT
Unity3D/C# 2013. 6. 28. 17:59using System;
using System.Collections;
namespace Test_01
{
public class QuickSortTest
{
public QuickSortTest ()
{
ArrayList arr = new ArrayList ();
for( int i = 0; i<3; i++){
Console.Write ("{0} : ", i);
arr.Add (Console.ReadLine ());
}
arr.Sort ();
foreach (object o in arr) {
Console.WriteLine("{0}", o);
}
}
}
}
문자, 숫자 혼합일 경우 정신 못차리는듯.
'Unity3D > C#' 카테고리의 다른 글
A Beginner's Tutorial on Implementing IEnumerable Interface and Understanding yield Keyword (0) | 2015.04.03 |
---|---|
extension method. (0) | 2015.02.25 |
중복 제거 방법 HashSet (0) | 2015.02.24 |
C# 자료구조 : 이진검색트리 (Binary Search Tree) (2) | 2013.06.26 |
C# 두 벡터의 내적 계산 (0) | 2013.06.26 |