日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

我們將描述使用 JavaScript 在按行排序的矩陣中查找中位數的過程。首先,我們將遍歷矩陣以將所有元素收集到一個數組中。然后,我們對數組進行排序以找到中間的值,這將是我們的中位數。如果元素個數為偶數,則中位數為中間兩個值的平均值。

方法

給定一個按行排序的矩陣,可以通過以下方法找到中位數 –

    將所有行合并到一個排序數組中。

    找到組合數組的中間元素,這將是中位數。

    如果組合數組中的元素數量為奇數,則返回中間元素作為中位數。

    如果組合數組中的元素個數為偶數,則返回中間兩個元素的平均值作為中位數。

    此方法的時間復雜度為 O(m * n log (m * n)),其中 m 是矩陣中的行數,n 是矩陣中的列數。

    李>

    空間復雜度為 O(m * n),因為整個矩陣需要組合成一個數組。

    示例

    這是一個 JavaScript 函數的完整工作示例,用于查找按行排序的矩陣中的中位數 –

    function findMedian(matrix) {
       
       // Get the total number of elements in the matrix
       const totalElements = matrix.length * matrix[0].length;
       
       // Calculate the middle index of the matrix
       const middleIndex = Math.floor(totalElements / 2);
       
       // Initialize start and end variables to keep track of the search space
       let start = matrix[0][0];
       let end = matrix[matrix.length - 1][matrix[0].length - 1];
        
       while (start <= end) {
       
          // Calculate the mid point
          let mid = Math.floor((start + end) / 2);
          
          // Initialize a counter to keep track of the number of elements less than or equal to the mid value
          let count = 0;
          
          // Initialize a variable to store the row index of the last element less than or equal to the mid value
          let rowIndex = -1;
              
          // Loop through each row in the matrix
          for (let i = 0; i < matrix.length; i++) {
          
             // Use binary search to find the first element greater than the mid value in the current row
             let columnIndex = binarySearch(matrix[i], mid);
             
             // If the current row has no element greater than the mid value, increment the count by the length of the row
             if (columnIndex === -1) {
                count += matrix[i].length;
                rowIndex = i;
             } else {
             
                // Otherwise, increment the count by the column index of the first element greater than the mid value
                count += columnIndex;
                break;
             }
          }
             
          // Check if the count of elements less than or equal to the mid value is greater than or equal to the middle index
          if (count >= middleIndex) {
             end = mid - 1;
          } else {
             start = mid + 1;
             rowIndex++;
          }
             
          // Check if we have reached the middle index
          if (count === middleIndex) {
             return matrix[rowIndex][middleIndex - count];
          }
       }
      
       return start;
    }
    
    // Helper function for binary search
    function binarySearch(arr, target) {
       let start = 0;
       let end = arr.length - 1;
         
       while (start <= end) {
          let mid = Math.floor((start + end) / 2);
          if (arr[mid] === target) {
             return mid;
          } else if (arr[mid] < target) {
             start = mid + 1;
          } else {
             end = mid - 1;
          }
       }
         
       return start === 0 ? -1 : start - 1;
    }
    const arr = [
       [1, 2, 3], 
       [4, 5, 6], 
       [7, 8, 9]
    ];
    
    console.log(findMedian(arr));
    

    登錄后復制

    說明

      findMedian函數接受矩陣作為參數。它首先分別使用 totalElements middleIndex 計算矩陣中的元素總數和中間索引(中位數)。

      startend變量分別初始化為矩陣的第一個和最后一個元素,因為它們是矩陣中的最小值和最大值.

      以上就是JavaScript 程序在按行排序的矩陣中查找中位數的詳細內容,更多請關注www.92cms.cn其它相關文章!

分享到:
標簽:中位數 排序 查找 矩陣 程序
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定