编程
文章平均质量分 69
asdybl
这个作者很懒,什么都没留下…
展开
-
链表逆序reverse还能再优化吗
#include #include #include using namespace std; typedef struct Student { int score; Student * next; } SNode; SNode * newNode() { SNode * p=NULL; p = (SNo原创 2014-03-24 16:15:31 · 409 阅读 · 1 评论 -
Reverse Words in a String
What constitutes a word? A sequence of non-space characters constitutes a word.Could the input string contain leading or trailing spaces? Yes. However, your reversed string should not contain leadin原创 2014-03-26 15:46:15 · 518 阅读 · 0 评论 -
常用排序
打印函数 base.h #ifndef __BASE_H_ #define __BASE_H_ #include #include using namespace std; template void print(T * array,const int size) { for (int i=0;i<size;i++) { cout<<array[i]<原创 2014-03-25 19:43:04 · 259 阅读 · 0 评论