文章列表
Traveling by Stagecoach
摘要: #include
#include
#include
using namespace std;
static const ……
铺砖问题,动态规划解法
摘要: #include
#include
#include
using namespace std;
static const ……
连通分量,2p237
摘要: #include
#include
#include
using namespace std;
static const ……
个人笔记转自作者pycode(侵权删)
摘要:# MarkDown编辑器基本使用说明
**如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。**
## 实时预览、全屏显示
![……
字符串与字符数组的一些区别
摘要: #include
#include //使用strlen函数需要用到此头文件
int main(void)
{
/*字符数组赋初值,不指定长……
使用gets/puts和scanf/printfs输入输出字符串时的一些区别
摘要:(1)gets的输入分割符只有回车,因此它可以读入空格。当其读取过程中遇到回车符时,读取立马结束,并把回车符从缓冲区中移走。而scanf的输入分割符有空格和回车。遇到非空白符前,它会忽略空格或回车。而……
以结构体指针做函数参数以及其输入输出
摘要:````c
#include
#include//使用malloc函数时需要引用此头文件
typedef struct Student//结构类型名可以与新定义的名字相同
{
……