bubble-sort

    0熱度

    2回答

    有一個我希望按照字母順序排序電子郵件的bubblesort程序。但是,當我運行帶有列表的程序時,我想對其進行排序,得到錯誤TypeError:'tuple'對象不支持項目分配。 下面是代碼: def BubbleSort(logindata): NoSwaps = 1 N = len(logindata) while NoSwaps == 1: Count

    2熱度

    4回答

    這是我實現的氣泡排序算法。 import java.util.Arrays; public class BubbleSort { public static void main(String[] args) { int[] unsorted = {1,3,5,6,2}; System.out.println(Arrays.toString(unsorted))

    0熱度

    1回答

    我在試着瞭解bubbleset是如何工作的。我知道這裏有很多關於這個的話題,但是它們都是不同版本的功能,並且對新手解釋不好。我發現在YouTube上冒泡這個簡潔的代碼: def bubblesort(mylist): for i in range(0, len(mylist) - 1): for j in range(0, len(mylist) - 1 - i): if

    0熱度

    1回答

    我想在Java中使用冒泡排序算法對數組進行排序。但是當我運行代碼ArrayIndexOutofBoundException發生。這裏是我的代碼 package bubblesort; public class BubbleSort { public int[] sort(int [] arr){ int temp=0; for(int i=0 ; i<arr.

    0熱度

    3回答

    我寫了這個氣泡排序函數,但我很難搞清楚它的時間複雜度。 function bubbleSort(items) { for (var i = items.length; i > 0; i--) { for (var j = 0; j < i; j++) { if (items[j] > items[j + 1]) { var temp = items[

    -3熱度

    1回答

    這是按字母順序排列數組的JavaScript代碼,但是我正在尋找一種方法來使用循環一次一個地排序每個項目。請你能提出這樣的一種方式或另一種選擇排序() var products = ["Printer", "Tablet", "Router", "Scanner", "Moniter", "Projector", "USB", "Keyboard"] document.getElementByI

    0熱度

    2回答

    簡短問題: 爲什麼我的方法(它接受塊)正在返回原始數組而不是修改。 長的問題: 這樣的代碼: def bubble_sort_by(array) array.each_with_index do |outer, outer_index| array.each_with_index do |inner, inner_index| if yield(outer, inn

    -3熱度

    1回答

    它應該按照升序排列數組成員。任何人都可以請解釋一步一步在泡沫排序過程。 //bubble sorting technique to sort the integer in ascending order int n = 5; int limit = n- 1;//elements from 0 to n-1 boolean flag = false;//i

    1熱度

    1回答

    我有一個計劃: 給出數字的序列,甚至 按升序排序號碼, 按降序排序奇數和 將排序後的偶數添加到數組,然後排序奇數。 實施例: Input: 1, 2, 3, 4, 5, 6 Expected output: 2, 4, 6, 5, 3, 1 Actual output: 1578032, 0, 3, 6, 6487408, 0 這裏是我的代碼: #include <stdio.h> i

    0熱度

    1回答

    好的,所以即時嘗試實現冒泡排序,但它不能正常工作時,我輸入0作爲一個數字。它顯示額外的數字。 int main() { int amount; int numbers[50]; int x, y, z, j; int swap; printf("How many numbers do you want to sort: "); sca