bubble-sort

    3熱度

    2回答

    所以這裏是我到目前爲止有: void sortArray(int amountOfScores, int* testScores) { for(int i = 0; i < amountOfScores; i++) { for(int j = 0; j < amountOfScores-1; j++) { if(*(testScores+

    3熱度

    1回答

    我寫冒泡排序算法的C++代碼,我不知道如何使它並行使用OpenMP所以請幫助我..... 這是代碼: #include "stdafx.h" #include <iostream> #include <time.h> #include <omp.h> using namespace std; int a[40001]; void sortArray(int [], int); i

    -5熱度

    3回答

    我想實現在C.這裏冒泡排序算法是我到目前爲止有: #include<stdio.h> void bubble_sort(int m, int a[100000]); void main() { int a[100000], i, m; FILE * be; be=fopen("be.txt","r"); for (i=0; !(feof(be)); ++i) fscanf

    -1熱度

    4回答

    如果我們需要實現一個函數,該函數接受一個整數數組並返回集合中的最大整數,假定數組的長度小於1000.您會使用Bubble排序或合併排序和爲什麼? 另外,如果數組長度大於1000,上述算法選擇會發生什麼?我有點困惑,爲什麼我應該使用特定的算法而不是另一種算法。這是因爲它的複雜性和時間或其他因素嗎?如果我必須測試上述功能,並且需要更多的時間用於簡單的算法,並且需要更少的時間用於複雜的算法,該怎麼辦?

    0熱度

    2回答

    我有一個ArrayCollection,我希望能夠通過一個位置向上或向下拖動項目。做這個的最好方式是什麼?