本文整理汇总了C++中DynArray::BubbleSort方法的典型用法代码示例。如果您正苦于以下问题:C++ DynArray::BubbleSort方法的具体用法?C++ DynArray::BubbleSort怎么用?C++ DynArray::BubbleSort使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DynArray
的用法示例。
在下文中一共展示了DynArray::BubbleSort方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main()
{
DynArray <char> a;
DynArray <char> b;
char c = 'c';
char d = 'd';
char e = 'e';
char f = 'f';
char g = 'g';
a.Push_Back(c);
a.Push_Back(d);
b.Push_Back(e);
b.Push_Back(f);
char result = a.At(0,result);
//a = c,d
//b = e,f
printf("At 0: %c\n", result);
printf("A at 0,1: %c,%c\nB at 0,1: %c,%c\n", a[0], a[1], b[0], b[1]);
a.Clear();
printf("A clear... Size: %i\n", a.Size());
a.Push_Back(c);
a.Push_Back(d);
a += b;
printf("A after += : %c,%c,%c,%c\n", a[0], a[1], a[2], a[3]);
printf("A[0] = %c, A[3] = %c\n", a[0], a[3]);
printf("A.GetData = %p\n", a.GetData());
printf("Capacity: %i, size = %i\n", a.Capacity(), a.Size());
printf("Empty: ");
if (a.Empty())
{
printf("yes\n");
}
else
{
printf("no\n");
}
a.Flip();
printf("A fliped: %c,%c,%c,%c\n", a[0], a[1], a[2], a[3]);
a.Push_Back(c);
a.Push_Back(d);
a.Push_Back(e);
a.Push_Back(f);
a.Insert(2, g);
printf("A inserted g in 2: %c,%c,%c,%c,%c,%c,%c,%c,%c\n", a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8]);
a.Erase(1);
printf("A: %s\n", a.GetData());
DynArray <int> test;
int swaps = 0;
int z;
time_t t;
test.Push_Back(5);
test.Push_Back(8);
test.Push_Back(3);
test.Push_Back(1);
test.Push_Back(4);
test.Push_Back(2);
printf("Int Array : %i,%i,%i,%i,%i,%i\n", test[0], test[1], test[2], test[3], test[4], test[5]);
swaps = test.BubbleSort();
printf("Int Array : %i,%i,%i,%i,%i,%i\nSwaps: %i\n", test[0], test[1], test[2], test[3], test[4], test[5], swaps);
DynArray <int> test2;
time(&t);
srand(t);
for (int i = 0; i <= 1000; i++)
{
z = rand();
test2.Push_Back(z);
}
system("pause");
return 0;
}