编程基础
文章平均质量分 52
蜕变的菜鸟
这个作者很懒,什么都没留下…
展开
-
仿list 中的merge()
#include #include using namespace std;template void merge(list& List1,list&List2){ list::iterator t1,t2; t1 = List1.begin(); t2 = List2.begin(); T t; while(t1 != List1.end() && t2 !=List2原创 2018-01-16 15:54:38 · 358 阅读 · 0 评论 -
string类的简单实现
//------------------------------------------------------------------//FileName : String.h//Author : Younger//description : Over write the string class//Date : 2016/07/13//Referent : http://blog.c原创 2016-07-15 13:51:36 · 193 阅读 · 0 评论 -
C/C++ printf,scanf 中的 “*”
1、scanf("%*d %d",&n); //控制端若是输入123 456 则忽略123 把456读入到n变量中 %*在scanf中相当于忽略对应的输入2、printf("%*d",5,10);//输出 10,在输出的10前面补了3个空,在这相当与printf("%5d",10); 作用是设置输出占位大小...原创 2018-01-30 14:14:34 · 280 阅读 · 0 评论