1 Star 0 Fork 0

agony/LeetCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
188.BestTimetoBuyandSellStockIV.Test.cs 2.02 KB
一键复制 编辑 原始数据 按行查看 历史
Kai Yang 提交于 2015-08-15 13:33 . Add shared code
using System;
using NUnit.Framework;
[TestFixture]
public class TestClass : TestClassBase
{
[TestCase("1 2 3 4 5", 0, 0)]
[TestCase("1 2 3 4 5", 1, 4)]
[TestCase("1 2 3 4 5", 2, 4)]
[TestCase("1 2 3 4 5", 3, 4)]
[TestCase("5 4 3 2 1", 1, 0)]
[TestCase("5 4 3 2 1", 2, 0)]
[TestCase("1 2 5 3 4", 1, 4)]
[TestCase("1 2 5 3 4", 2, 5)]
[TestCase("1 2 5 3 4", 3, 5)]
[TestCase("2 5 3 4 1", 1, 3)]
[TestCase("2 5 3 4 1", 2, 4)]
[TestCase("2 5 3 4 1", 3, 4)]
[TestCase("6 7 4 5 2 3 1", 1, 1)]
[TestCase("6 7 4 5 2 3 1", 2, 2)]
[TestCase("6 7 4 5 2 3 1", 3, 3)]
[TestCase("6 7 4 5 2 3 1", 4, 3)]
[TestCase("6 1 3 2 4 7", 1, 6)]
[TestCase("6 1 3 2 4 7", 2, 7)]
[TestCase("6 1 3 2 4 7", 3, 7)]
[TestCase("1 2 4 2 5 7 2 4 9 0", 1, 8)]
[TestCase("1 2 4 2 5 7 2 4 9 0", 2, 13)]
[TestCase("1 2 4 2 5 7 2 4 9 0", 3, 15)]
[TestCase("1 2 4 2 5 7 2 4 9 0", 4, 15)]
[TestCase("2 6 8 7 8 7 9 4 1 2 4 5 8", 2, 14)]
[TestCase("5 2 3 2 6 6 2 9 1 0 7 4 5 0", 2, 14)]
[TestCase("3 8 4 9 2 7 5 8 8 7", 1, 6)]
public void TestMethod(string pricesString, int k, int expectedResult)
{
var prices = Array.ConvertAll(pricesString.Split(), int.Parse);
var result = new Solution().MaxProfit(k, prices);
Assert.AreEqual(expectedResult, result);
}
[TestCase(10, 10)]
public void TestCaseGenerator(int n, int maxPrice)
{
for (var t = 0; t < 100; ++t)
{
var prices = GenerateIntegerArray(n, n, 1, maxPrice);
var k = Random.Next(1, n/2);
var stupidResult = new Solution().MaxProfitStupid(k, prices);
var result = new Solution().MaxProfit(k, prices);
if (stupidResult != result)
{
Console.WriteLine("Stupid result: {0}. Result: {1}.", stupidResult, result);
Console.WriteLine("k: {0}", k);
Console.WriteLine("Prices: {0}", string.Join(" ", prices));
Assert.Fail();
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/agony2020/LeetCode.git
git@gitee.com:agony2020/LeetCode.git
agony2020
LeetCode
LeetCode
master

搜索帮助