티스토리 뷰
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication6
{
class Program
{
static void Main(string[] args)
{
int[] b = new int[] { 99,8,4,6,9 };
int temp = 0;
for (int i = 1; i < b.Length; i++)
{
for (int j = i + 1; j < b.Length; j++)
{
if (b[i] > b[j])
{
temp = b[i];
b[i] = b[j];
b[j] = temp;
}
}
}
for (int i = 0; i < b.Length; i++)
{
Console.Write(b[i] + ", ");
}
}
}
}
'Algorithm > 이론' 카테고리의 다른 글
[Algorithm] 위상 정렬(Topology Sort) (0) | 2021.10.03 |
---|---|
[자료구조] Merge Sort (머지소트) (0) | 2021.08.04 |
[자료구조][Linux] Hash Table(해시 테이블) (2) | 2021.08.04 |
[Algorithm] 오일러의 피함수 ( Euler's Phi-Function ) (0) | 2021.05.03 |
[Algorithm] 소수 구하기: 에라토스테네스의 체 ( Sieve of Eratosthenes ) (0) | 2021.05.03 |