09 2021 档案
C练习_1005
摘要:题自:题目 1009: [编程入门]数字的处理与判断_C语言网 题目描述 给出一个不多于5位的整数,要求 1、求出它是几位数 2、分别输出每一位数字 3、按逆序输出各位数字,例如原数为321,应输出123 输入 一个不大于5位的数字 输出 三行 第一行 位数 第二行 用空格分开的每个数字,注意最后一
栈—顺序栈(C实现)
摘要:// 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
顺序表_C
摘要:// 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
顺序表之单链表(C实现)
摘要:// 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
memset函数&&bzro函数_C
摘要:// Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" #include "string.h" //1、memset函数 /*memset 函数是内存空间赋值函数,用
结构体_C
摘要:// Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" #include "string.h" // 结构体 // 为了表达一个数据集 // 人的基本信息 姓名(字符
字符—字符与整数的关系&&常用的库函数_C
摘要:// Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" int main(int argc, char **argv) { //字符与整数的关系 /*字符类型char
数据类型的别名&&随机数_C
摘要:// 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) { //
指针_C
摘要:指针的代码 // Code file created by C Code Develop #include "ccd.h" #include "stdio.h" #include "stdlib.h" // #include "waibu.c" #include "string.h" int mai
分鱼问题—总结
摘要:问题描述 A、B、C、D、E这5个人合伙夜间捕鱼,凌晨时都已经疲惫不堪,于是各自在河边的树丛中找地方睡着了。第二天日上三竿时,A第一个醒来,他将鱼平分为5份,把多余的一条扔回河中,然后拿着自己的一份回家去了;B第二个醒来,但不知道A已经拿走了一份鱼,于是他将剩下的鱼平分为5份,扔掉多余的一条,然后只
使用uWSGI+nginx部署Django项目(Ubuntu)
摘要:对于uwsgi+nginx的部署方式,它的访问关系大概是: 1 the web client <-> the web server <-> the socket <-> uwsgi <-> Django 如果你需要使用virtualenv: 1 2 3 virtualenv uwsgi-tutori
centos安装python3
摘要:Python3 下载 国内下载网址: http://mirrors.sohu.com/python/3.6.1/Python-3.6.1.tgz 下载后通过ftp放入/usr/local/bin目录解压如下 以 Python3.6.1 版本为例: # tar -zxvf Python-3.6.1.t
部署django
摘要:搭建uWSGI工作环境 在 WSGI 协议中定义了两个角色:一个是 Web 服务器即 server,另一个是应用程序即 application,server 需要接受来自客户端的请求,然后根据协议定义调用应用程序(application),应用程序处理请求并返回结果给 server,最终响应给客户端
Win10下安装LabelImg以及使用--LabelImg
摘要:labelImg是图片标注软件,用于数据集的制作、标注等等。下面介绍labelImg的安装过程。 我用的是anaconda,所以以anaconda prompt作为终端: 在Anaconda Prompt中依次运行以下命令(注意大小写) pip install PyQt5 -i https://py