用了两种形式的数据,一个是泛型List,一个是数据int[].记录一下,作为自己学习过程中的笔记. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 冒泡排序算法 { class Program { static void Main(string[] args) { List<, , , , ,…
C++通过指针实现一位数组的冒泡排序算法. 冒泡排序 冒泡排序(Bubble Sort),是一种计算机科学领域的较简单的排序算法. 代码: /* Name:冒泡排序算法 Copyright:Null Author:小X Date: 06-10-14 10:34 Description:C++通过指针实现一维数组的冒泡排序 */ #include <iostream> /* run this program using the console pauser or add your own get…