我尝试使用数组,但我不需要每个元素,因此它不会编译,因为我的界限太大。
所以,我想尝试一些更动态的东西,也许使用地图或矢量或其他东西(无论你们推荐什么)。
就像我有一个功能:
long long func(long long arg1, long long arg2, long long arg3){
check if [arg1, arg2, arg3] is memoized, and if it is, return it
....function body...
store return value with [arg1, arg2, arg3] in memoization cache
return value;
}
我怎样才能做到这一点?