1 Star 0 Fork 0

ljfirst/algo-go-sdk

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
CalculatorINTF.go 512 Bytes
Copy Edit Raw Blame History
ljfirst authored 2023-07-04 23:35 +08:00 . feat: PriorityQueue
package intf
import "gitee.com/ljfirst/algo-go-sdk/src/data_structure/heap_stack_queue/stack"
/**
* @author ljfirst
* @version V1.0
* @date 2023/6/28 17:11
* @author-Email ljfirst@mail.ustc.edu.cn
* @blogURL https://blog.csdn.net/ljfirst
* @description
* */
type CalculatorINTF interface {
Cal(string) float64
StructName() string
}
var CalculatorAssemble = map[string][]interface{}{
"Calculator": {
&stack.Calculator{},
&stack.CalculatorWithBracket{},
&stack.CalculatorWithOutBracket{},
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ljfirst/algo-go-sdk.git
git@gitee.com:ljfirst/algo-go-sdk.git
ljfirst
algo-go-sdk
algo-go-sdk
v1.0.3

Search