mirror of
https://github.com/krahets/hello-algo.git
synced 2026-08-18 14:30:58 +00:00
fix(csharp): Modify method name to PascalCase, simplify new expression (#840)
* Modify method name to PascalCase(array and linked list) * Modify method name to PascalCase(backtracking) * Modify method name to PascalCase(computational complexity) * Modify method name to PascalCase(divide and conquer) * Modify method name to PascalCase(dynamic programming) * Modify method name to PascalCase(graph) * Modify method name to PascalCase(greedy) * Modify method name to PascalCase(hashing) * Modify method name to PascalCase(heap) * Modify method name to PascalCase(searching) * Modify method name to PascalCase(sorting) * Modify method name to PascalCase(stack and queue) * Modify method name to PascalCase(tree) * local check
This commit is contained in:
@@ -8,7 +8,7 @@ namespace hello_algo.chapter_greedy;
|
||||
|
||||
public class coin_change_greedy {
|
||||
/* 零钱兑换:贪心 */
|
||||
public int coinChangeGreedy(int[] coins, int amt) {
|
||||
public int CoinChangeGreedy(int[] coins, int amt) {
|
||||
// 假设 coins 列表有序
|
||||
int i = coins.Length - 1;
|
||||
int count = 0;
|
||||
@@ -31,14 +31,14 @@ public class coin_change_greedy {
|
||||
// 贪心:能够保证找到全局最优解
|
||||
int[] coins = { 1, 5, 10, 20, 50, 100 };
|
||||
int amt = 186;
|
||||
int res = coinChangeGreedy(coins, amt);
|
||||
int res = CoinChangeGreedy(coins, amt);
|
||||
Console.WriteLine("\ncoins = " + coins.PrintList() + ", amt = " + amt);
|
||||
Console.WriteLine("凑到 " + amt + " 所需的最少硬币数量为 " + res);
|
||||
|
||||
// 贪心:无法保证找到全局最优解
|
||||
coins = new int[] { 1, 20, 50 };
|
||||
amt = 60;
|
||||
res = coinChangeGreedy(coins, amt);
|
||||
res = CoinChangeGreedy(coins, amt);
|
||||
Console.WriteLine("\ncoins = " + coins.PrintList() + ", amt = " + amt);
|
||||
Console.WriteLine("凑到 " + amt + " 所需的最少硬币数量为 " + res);
|
||||
Console.WriteLine("实际上需要的最少数量为 3 ,即 20 + 20 + 20");
|
||||
@@ -46,7 +46,7 @@ public class coin_change_greedy {
|
||||
// 贪心:无法保证找到全局最优解
|
||||
coins = new int[] { 1, 49, 50 };
|
||||
amt = 98;
|
||||
res = coinChangeGreedy(coins, amt);
|
||||
res = CoinChangeGreedy(coins, amt);
|
||||
Console.WriteLine("\ncoins = " + coins.PrintList() + ", amt = " + amt);
|
||||
Console.WriteLine("凑到 " + amt + " 所需的最少硬币数量为 " + res);
|
||||
Console.WriteLine("实际上需要的最少数量为 2 ,即 49 + 49");
|
||||
|
||||
Reference in New Issue
Block a user