240 发简信
IP属地:山东
  • c语言中的strcmp()

    strcmp() 用来比较字符串(区分大小写),其原型为: int strcmp(const char *s1, const char *s2)...

  • Resize,w 360,h 240
    C++中cin、cin.get()、cin.getline()、getline()、gets()等函数的用法

    1.cin>> 注意:>> 是会过滤掉不可见字符(如 空格 回车,TAB 等) cin>>noskipws>>input[j];//不想略过空白...

  • size()、length ()和sizeof()的区别

    1、size()是取字符串长度的,跟length()用法相同。 例如:string str="0123456789"; cout <<"str....

  • Resize,w 360,h 240
    STL之for_each和transform对比

    for_each() 速度快 不灵活 没有返回值 transform() 速度慢 非常灵活 有返回值 for_each() 用的函数,传的...

  • button功能应用的小激动

    用C#编出一个窗体程序,掩饰不住内心的激动!原来不是那么难,什么大程序,都是一个一个字母,一块一块功能敲出来的。原来这是应了那句老话,眼是...

  • Resize,w 360,h 240
    STL之排列组合

    next_permutation() 正序 example 1,2,3 prev_permutation() 倒序 example 3,2,1

  • STL bind1st bind2nd

    头文件是<functional> bind1st 和 bind2nd 是两个捆绑函数。 bind1st(const Operation& op,...

  • STL之逆转和旋转

    逆转 1.reverse() reverse(ivec.begin(),ivec.end()); //123456转换成654321 2.re...