substring和subsequence

  • substring是子串。例如,‘wee’ 是 ‘helloween’的substring,‘hwn’ 不是 ‘helloween’的substring。取子串的时候不能隔着字符取。
  • subsequence是子序列。例如,‘wee’ 和 ‘hwn’ 都是 ‘helloween’的subsequence。取子序列的时候可以隔着字符取。
  • palindromic substring 是回文子串,例如‘soebeos’ 是 ‘absoebeostge’ 的回文子串。回文的意思是正过来念和反过来念都一样的字符串,比如“上海自来水来自海上”。

 

上一篇:Python 科学计算-介绍


下一篇:[HDU6343]Graph Theory Homework