- 相關(guān)推薦
c#冒泡排序算法
C#中如何實(shí)現(xiàn)冒泡排序?下面小編為大家整理了c#冒泡排序算法,希望能幫到大家!
冒泡排序(Bubble Sort)
冒泡排序算法的運(yùn)作如下:
1.比較相鄰的元素。如果第一個(gè)比第二個(gè)大,就交換他們兩個(gè)。
2.對(duì)每一對(duì)相鄰元素作同樣的工作,從開始第一對(duì)到結(jié)尾的最后一對(duì)。在這一點(diǎn),最后的元素應(yīng)該會(huì)是最大的數(shù)。
3.針對(duì)所有的元素重復(fù)以上的步驟,除了最后一個(gè)。
4.持續(xù)每次對(duì)越來越少的元素重復(fù)上面的步驟,直到?jīng)]有任何一對(duì)數(shù)字需要比較。
平均時(shí)間復(fù)雜度 |
---|
復(fù)制代碼 代碼如下:
///
/// 冒泡排序
///
///
///
public static void BubbleSort(int[] arr, int count)
{
int i = count, j;
int temp;
while (i > 0)
{
for (j = 0; j < i - 1; j++)
{
if (arr[j] > arr[j + 1])
{
temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
i--;
}
}
//使用例子
int[] y = new int[] { 1, 32, 7, 2, 4, 6, 10, 8, 11, 12, 3, 9, 13, 5 };
BubbleSort(y, y.Length );
foreach (var item in y)
{
Console.Write(item+" ");
}
//1 2 3 4 5 6 7 8 9 10 11 12 13 32
簡單且實(shí)用的冒泡排序算法的控制臺(tái)應(yīng)用程序。運(yùn)行界面如下:
復(fù)制代碼 代碼如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace 冒泡排序
{
class Program
{
///
/// 交換兩個(gè)整型變量的值
///
///要交換的第一個(gè)整形變量
///要交換的第一個(gè)整形變量
private static void Reverse(ref int a, ref int b)
{
int temp = a;
a = b;
b = temp;
}
static void Main(string[] args)
{
while (true)
{
string[] strInput;//用來接收用戶輸入的字符串
int[] intInput;
string[] separator = { ",", " " };//設(shè)置分隔符
Console.WriteLine("請(qǐng)輸入數(shù)據(jù),以","或空格分隔,或按"q"退出。");
string str = Console.ReadLine();//接收鍵盤輸入
if (str == "q")
{
return;
}
strInput = str.Split(separator, StringSplitOptions.RemoveEmptyEntries);//將用戶輸入的字符串分割為字符串?dāng)?shù)組
intInput = new Int32[strInput.Length];
//將字符串?dāng)?shù)組的每一個(gè)元素轉(zhuǎn)換為整型變量
//轉(zhuǎn)換時(shí)如果出現(xiàn)格式錯(cuò)誤或溢出錯(cuò)誤則提示
try
{
for (int i = 0; i < strInput.Length; i++)
{
intInput[i] = Convert.ToInt32(strInput[i]);
}
}
catch (FormatException err)
{
Console.WriteLine(err.Message);
}
catch(OverflowException err)
{
Console.WriteLine(err.Message);
}
//排序算法主體
for (int i = 0; i < intInput.Length - 1; i++)//這里的Length要減1否則會(huì)超界
{
for (int j = 0; j < intInput.Length - i - 1; j++)//這里的Length要減i以減少重復(fù)運(yùn)算
{
//如果元素j比它之后的一個(gè)元素大,則交換他們的位置
//如此循環(huán)直到遍歷完整個(gè)數(shù)組
if (intInput[j] > intInput[j + 1])
{
Reverse(ref intInput[j], ref intInput[j + 1]);
}
}
}
string strOutput = "";//用于輸出的字符串
foreach (int temp in intInput)
{
strOutput += Convert.ToString(temp) + ",";
}
Console.WriteLine("排序后的數(shù)據(jù)為:rn{0}rn", strOutput);
}
}
}
}
【c#冒泡排序算法】相關(guān)文章:
C語言冒泡排序算法實(shí)例06-15
冒泡排序算法原理及JAVA實(shí)現(xiàn)代碼方法10-16
Java排序算法06-17
C語言經(jīng)典冒泡排序法09-24
經(jīng)典c語言冒泡排序法08-08
C語言的冒泡排序方法08-22
C語言經(jīng)典冒泡排序法詳解08-03
PHP快速排序算法詳解08-30
java常見的排序算法的代碼09-20
PHP排序算法類講解07-18