Leetcode[646] Maximum Length of

2017-08-25  本文已影响0人  耳可黄
Algorithm
知识点
class myClass {
  static bool comp (T a, T b) { //statement }
  void foo() { 
    //statement
    sort(myVector.begin(), myVector.end(), comp);
    //statement
  }
}

or

book comp (T a, T b) { //statement }
class myClass {
  //same
}

需注意在class内define的comp前要加static关键词

上一篇下一篇

猜你喜欢

热点阅读