国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

有多少種硬幣組合——找出獨特子數組之和

xiaoqibTn / 2144人閱讀

摘要:另外,我們還需要將所有硬幣組合起來,組成一個新的數組,其中包含了所有的硬幣。比如硬幣數組,和代表其數量的數組,組合成。

寫在前面的自我檢討

這道題的解法,剛開始我自己做的并不算是一個很好的解法,只能說題目是做出來了,但過程中的計算有大量的重復計算,導致函數復雜度直逼O(n^n)。查閱資料之后便有了一個改良版。感謝這篇文章Find all distinct subset (or subsequence) sums of an array!

背景

最近因為一些原因,做了幾道“簡單”的算法題。今天要講的便是其中的一道題:如果你有一個硬幣數組和一個代表其數量的數組,如何得到一共有多少種不同組合所得的和?

分析

比如:硬幣數組[10, 50, 100],和代表其數量的數組[1, 2, 1]就表示這里一共有三種硬幣,1枚10分,2枚50分和1枚100分硬幣。那么其可能的排列組合則包括

10 = 10

50 = 50

100 = 100

10 + 50 = 60

10 + 100 = 110

50 + 50 = 100

50 + 100 = 150

10 + 50 + 50 = 110

10 + 50 + 100 = 160

50 + 50 + 100 = 200

10 + 50 + 50 + 100 = 210

則,不重復的值則包括加黑的部分,一共是9個。

而我們現在的問題便是,輸入兩個數組:硬幣數組和代表其數量的數組,得到一個整數的返回值。

實際操作 第一步 定義輸入與輸出

根據分析,函數的輸入與輸出應該規定如下。

/**
 * Count number of 
 * @param {Array} coins array contains coins with different values
 * @param {Array} counts array contains corresponding counts of different coins
 * @returns {Number} The count of distinct sums
 */
function countDistinctSum(coins, counts) {
    // Implementation
}
第二步 初始化變量和定義函數結構

首先,我們應該先做一個檢查,如果coins的長度跟counts的長度并不相等的話,則函數不應該繼續處理,而是應該返回一個錯誤值。暫且定為-1吧。

然后,我們采用key value pair的形式來儲存不同和(sum)的數量。所以我們必須有一個名叫result的對象。當然,其中并沒有任何的key。在函數運行必要的計算之后,再返回result的key的數量作為最后的答案。

另外,我們還需要將所有硬幣組合起來,組成一個新的數組coinList,其中包含了所有的硬幣。比如:硬幣數組[10, 50, 100],和代表其數量的數組[1, 2, 1],組合成[10, 50, 50, 100]。這一部分用兩個for loop輕松搞定。

代碼如下:

function countDistinctSum(coins, counts) {
    if(coins.length !== counts.length) {
        return -1;
    }

    const results = {};
    const coinList = [];

    for(let i = 0; i < coins.length; i++){
        for(let j = 0; j < counts[i]; j++) {
            coinList.push(coins[i]);
        }
    }

    processList(coinList, coinList.length, 0, 0, results);

    return Object.keys(results).length - 1; // Remove the empty 0 coin element
}
第三步 處理coinList

當我們得到一個coinList之后,接下來我們便要處理這個數組,將其內部的元素全都排列一遍。比如,[10, 50, 100]就有以下排列方法。

[10]

[10, 50]

[10, 100]

[10, 50, 100]

[50]

[50, 100]

[100]

這時,我便考慮使用遞歸法(recursive method)來解決這個問題。

函數接受兩個輸入

results用來儲存已經有的sum

n用來儲存硬幣數組的長度

sum用來儲存臨時已經疊加的和

currentIndex用來記錄當前遍歷到的索引

coinList用來輸入當下數組里的硬幣元素。

設置出口條件

currentIndex大于coinList的長度時,返回。

currentIndex等于coinList的長度時,調用addToResults函數(下一步講解)然后返回。

遞歸函數

processList()會被遞歸兩次,這兩者之間的帶入參數區別只有sum的不同而已

第一個processList()將帶入sum加上當下的coin值,達到計算累計的效果。比如:[10, 50, 50, 100]一路加到最后成為210

第二個processList()將之帶入當下的sum值去到下一個遞歸。隨著index的增加,該sum值會將一直被保留直到最終被加入result,它也將實現跳躍相加的方法。比如:[10, 50, 50, 100]其中的10 + 100就可以在這個遞歸中實現。

代碼如下:

/**
 * Recursive function to collect all the sums from all combinations
 * @param {Array} coinList array of coins
 * @param {Number} n the length of coin array
 * @param {Number} sum the current accumulated value
 * @param {Number} currentIndex the current processing index in the coin array
 * @param {Object} results existing result object brought into recursive function for recording sum
 */
function processList(coinList, n, sum, currentIndex, results) {
    if(currentIndex > n) {
        return;
    }

    if(currentIndex === n){
        addToResults(results, sum);
        return;
    }

    processList(coinList, n, sum + coinList[currentIndex], currentIndex + 1, results);
    processList(coinList, n, sum, currentIndex + 1, results);
}
第四步 addToResults函數

因為result本身是空的,當我們算出一個和是result里沒有的key的話,必須初始化這個key,使其值為1。反之,則只需要在其值上加1便可。

代碼如下:

/**
 * Add the number to results as a key
 * @param {Object} results 
 * @param {Number} number 
 */
function addToResults(results, number) {
    if(results[number]) {
        results[number]++;
    } else {
        results[number] = 1;
    }
}
大功告成!

完整代碼:

/**
 * Count number of 
 * @param {Array} coins array contains coins with different values
 * @param {Array} counts array contains corresponding counts of different coins
 * @returns {Number} The count of distinct sums
 */
function countDistinctSum(coins, counts) {
    if(coins.length !== counts.length) {
        return -1;
    }

    const results = {};
    const coinList = [];

    for(let i = 0; i < coins.length; i++){
        for(let j = 0; j < counts[i]; j++) {
            coinList.push(coins[i]);
        }
    }

    processList(coinList, coinList.length, 0, 0, results);

    return Object.keys(results).length - 1; // Remove the empty 0 coin element
}

/**
 * Recursive function to collect all the sums from all combinations
 * @param {Array} coinList array of coins
 * @param {Number} n the length of coin array
 * @param {Number} sum the current accumulated value
 * @param {Number} currentIndex the current processing index in the coin array
 * @param {Object} results existing result object brought into recursive function for recording sum
 */
function processList(coinList, n, sum, currentIndex, results) {
    if(currentIndex > n) {
        return;
    }

    if(currentIndex === n){
        addToResults(results, sum);
        return;
    }

    processList(coinList, n, sum + coinList[currentIndex], currentIndex + 1, results);
    processList(coinList, n, sum, currentIndex + 1, results);
}

/**
 * Add the number to results as a key
 * @param {Object} results 
 * @param {Number} number 
 */
function addToResults(results, number) {
    if(results[number]) {
        results[number]++;
    } else {
        results[number] = 1;
    }
}

測試:

const a = [10, 50, 100];
const b = [1, 2, 1];

console.log("Result:", countDistinctSum(a, b)) // Result: 9

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/98739.html

相關文章

  • 多少硬幣組合,更優解法

    摘要:寫在前面的自我檢討上周我發布了一篇博文有多少種硬幣組合找出獨特子數組之和,是關于有多少種硬幣組合的算法題的解法。假如,現在我們只有一個硬幣,分。則可能性只有種,那就是。 寫在前面的自我檢討 v2 上周我發布了一篇博文有多少種硬幣組合——找出獨特子數組之和,是關于有多少種硬幣組合的算法題的解法。雖然算法本身能夠給出一個正確答案,可是仔細想來,我卻沒辦法給出一個簡單直接的解釋為什么這樣跑可...

    williamwen1986 評論0 收藏0
  • 理解CKB的Cell模型

    摘要:交易依然表示狀態的變化遷移。這樣一個模型的特點是狀態是第一性的所有者是狀態的屬性,每一份狀態只有一個所有者狀態不斷的被銷毀和創建。值得指出的是,的編程模型之所以強大,更多是因為它有狀態,而不是因為它的有限圖靈完備。 在設計 CKB 的時候,我們想要解決三個方面的問題: 狀態爆炸引起的公地悲劇及去中心化的喪失;計算和驗證耦合在了一起使得無論是計算還是驗證都失去了靈活性,難以擴展;交易與價...

    henry14 評論0 收藏0
  • 對比特幣的繼承與創新!深入理解公鏈 CKB 的 Cell 模型

    摘要:為了理解底層公鏈的模型,我們前置了幾篇概念性文章,講述了我們應該以狀態為中心設計區塊鏈系統的,以及這么做帶來的好處。交易依然表示狀態的變化遷移。 為了理解底層公鏈 CKB 的 Cell 模型,我們前置了幾篇概念性文章,講述了我們應該以狀態為中心設計區塊鏈系統的,以及這么做帶來的好處。并且在上一篇文章中,詳細分析了比特幣 UTXO 模型和以太坊的 Account 模型,以及進行了對比分析...

    ruicbAndroid 評論0 收藏0
  • 前端也需要好好的精進自己的算法

    摘要:算法前端發展的再快,也不要忘記精進自己的算法,算法是靈魂和核心。我會把我刷過的算法題總結歸類,不斷完善。 算法 前端發展的再快,也不要忘記精進自己的算法,算法是靈魂和核心。我會把我刷過的算法題總結歸類,不斷完善。歡迎大家關注。 數組和堆棧 數組去重 旋轉數組 如何快速找出兩個數之和等于某一個值的兩個數? 快排 排序算法大總結 快速找到數組中的最大值 多維數組的展開 二分查找 有效的括...

    hersion 評論0 收藏0
  • JavaScript 編程精解 中文第三版 十六、項目:平臺游戲

    摘要:來源編程精解中文第三版翻譯項目原文譯者飛龍協議自豪地采用谷歌翻譯部分參考了編程精解第版所有現實都是游戲。黑色的方塊表示玩家,玩家任務是收集黃色的方塊硬幣,同時避免碰到紅色素材巖漿。網格中的元素可能是空氣固體或巖漿。 來源:ApacheCN『JavaScript 編程精解 中文第三版』翻譯項目原文:Project: A Platform Game 譯者:飛龍 協議:CC BY-NC-SA...

    wayneli 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<