题解列表

筛选

DNA-题解(C++代码)

摘要:```cpp #include #include using namespace std; int main() { string* s; int a, b, num……

29.散列存储-题解(C++代码)只做最好的思路!

摘要:这题可真有意思,虽然不是什么难题。。。 这题其实放在这里并不是太合适,因为本身数据量就不大,不需要牺牲空间来换时间,其次,如果强行要用hash来做,那么只能类似hash[temp]+=temp这样牺……