摘要: // Code file created by C Code Develop // 顺序栈 #include "ccd.h" #include "stdio.h" #include "stdlib.h" #define MaxSize 10 #define OK 1 #define ERROR 0 阅读全文
posted @ 2021-09-26 21:47 def_Class 阅读(83) 评论(0) 推荐(0)
摘要: // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" #define InitSize 10 typedef struct { int *data; int Max 阅读全文
posted @ 2021-09-26 21:44 def_Class 阅读(41) 评论(0) 推荐(0)
摘要: // Code file created by C Code Develop #include "ccd.h"#include "stdio.h"#include "stdlib.h"#define OK 1#define ERROR 0//思考: 如果用cpp即C++编码会不会能够编译成功type 阅读全文
posted @ 2021-09-26 21:43 def_Class 阅读(37) 评论(0) 推荐(0)
摘要: // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" #include "string.h" //1、memset函数 /*memset 函数是内存空间赋值函数,用 阅读全文
posted @ 2021-09-26 21:40 def_Class 阅读(124) 评论(0) 推荐(0)
摘要: // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" #include "string.h" // 结构体 // 为了表达一个数据集 // 人的基本信息 姓名(字符 阅读全文
posted @ 2021-09-26 21:38 def_Class 阅读(64) 评论(0) 推荐(0)
摘要: // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" int main(int argc, char **argv) { //字符与整数的关系 /*字符类型char 阅读全文
posted @ 2021-09-26 21:37 def_Class 阅读(184) 评论(0) 推荐(0)
摘要: // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" #include <time.h> int main(int argc, char **argv) { // 阅读全文
posted @ 2021-09-26 21:35 def_Class 阅读(68) 评论(0) 推荐(0)
摘要: 指针的代码 // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" // #include "waibu.c" #include "string.h" int mai 阅读全文
posted @ 2021-09-26 21:34 def_Class 阅读(29) 评论(0) 推荐(0)
摘要: 问题描述 A、B、C、D、E这5个人合伙夜间捕鱼,凌晨时都已经疲惫不堪,于是各自在河边的树丛中找地方睡着了。第二天日上三竿时,A第一个醒来,他将鱼平分为5份,把多余的一条扔回河中,然后拿着自己的一份回家去了;B第二个醒来,但不知道A已经拿走了一份鱼,于是他将剩下的鱼平分为5份,扔掉多余的一条,然后只 阅读全文
posted @ 2021-09-26 21:25 def_Class 阅读(427) 评论(0) 推荐(0)
摘要: 对于uwsgi+nginx的部署方式,它的访问关系大概是: 1 the web client <-> the web server <-> the socket <-> uwsgi <-> Django 如果你需要使用virtualenv: 1 2 3 virtualenv uwsgi-tutori 阅读全文
posted @ 2021-09-26 21:01 def_Class 阅读(16) 评论(0) 推荐(0)