What is Nostr?
dave /
npub1tsg…htk4
2023-02-08 12:45:40
in reply to nevent1q…v7lx

dave on Nostr: 以下是一段冒泡排序C#代码: public static void BubbleSort(int[] array){ ...

以下是一段冒泡排序C#代码:
public static void BubbleSort(int[] array){
bool flag = true;
for (int i = 0; i < array.Length && flag; i++) {
flag = false;
for (int j = array.Length - 2; j >= i; j--) {
if (array[j] > array[j + 1]) {
int temp = array[j];
array[j] = array[j + 1];
array[j + 1] = temp;
flag = true;
}
}
}
}
Author Public Key
npub1tsgw6pncspg4d5u778hk63s3pls70evs4czfsmx0fzap9xwt203qtkhtk4