what is the minimum space complexity in problem of find longest common substring?

前端 未结 0 1222
被撕碎了的回忆
被撕碎了的回忆 2021-02-19 05:14
const char* _longestCommonSubstr(const char *s1, const char *s2, int n, int m) {
   // assert n >= m
   int max = 0; // keep track of max length found
   int tmp = 0;         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题