You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// File: max_capacity_test.go
|
|
// Created Time: 2023-07-23
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
package chapter_greedy
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestMaxCapacity(t *testing.T) {
|
|
ht := []int{3, 8, 5, 2, 7, 7, 3, 4}
|
|
|
|
// 貪婪演算法
|
|
res := maxCapacity(ht)
|
|
fmt.Println("最大容量為", res)
|
|
}
|