C# 배열연습
Unity3D/C# 2020. 4. 17. 21:28반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
using System;
namespace test_001
{
class MainClass
{
public static void Main(string[] args)
{
string[] arr = new string[10];
arr[0] = "kim";
arr[3] = "hong";
arr[7] = "jang";
arr[9] = "lim";
foreach (string name in arr) {
if (name == null)
{
Console.WriteLine("[ ]");
}
else {
Console.WriteLine(name);
}
}
Console.WriteLine("***************");
var m = new MainClass();
m.Sort(arr);
}
public void Sort(string[] arr) {
int idx = 0;
foreach (string name in arr)
{
if (name != null)
{
idx = Array.IndexOf(arr, name);
var current = idx;
var prev = current - 1;
while (true)
{
if (prev < 0 || arr[prev] != null) break;
arr[prev] = arr[current];
arr[current] = null;
current = prev;
prev = current - 1;
if (arr[i] == null)
Console.WriteLine("[ ]");
else
Console.WriteLine(arr[i]);
}
Console.WriteLine("***************");
}
}
}
}
}
}
|
반응형
'Unity3D > C#' 카테고리의 다른 글
한글 받침에따라서 '을/를' 구분하기 (0) | 2020.10.19 |
---|---|
xml to json (0) | 2020.08.05 |
구조체(struct) 와 클래스(class)의 차이점 (0) | 2019.08.15 |
visual studio code 에서 c# 디버깅 하기 (0) | 2019.08.14 |
(C#) resolving-method-overloads (0) | 2019.04.10 |