04 2024 档案
摘要:Git环境配置 日期:2024/4/29 修改时间: 软件下载 打开[git官网]Git - 下载 (git-scm.com),下载git对应操作系统的版本。 所有东西下载慢的话就可以去找镜像 官网下载太慢,我们可以使用淘宝镜像下载:http://npm.taobao.org/mirrors/git
阅读全文
摘要:输出一个百位数,1-5之间所有组合类型,数字不重复 #include <stdio.h> int main(int argc, const char *argv[]) { int b, s, g; int count = 0; for (b = 1; b < 5; b++) { for (s = 1
阅读全文
摘要:CircularQueue /*********************************************************** * * file name: CircularQueue interface * author : 19870326073@163.com * dat
阅读全文
摘要:双向循环链表接口 /*********************************************************** * * file name: DoubleCircularLinkedList interface * author : 19870326073@163.com
阅读全文
摘要:单向循环链表大纲 /*********************************************************** * * file name: * author : 19870326073@163.com * date : 2024/04/23 * function : *
阅读全文
摘要:删除单链表L(有头结点)中的一个最小值结点。 /*********************************************************** * * file name: * author : 19870326073@163.com * date : 2024/04/23
阅读全文
摘要:删除顺序表L中下标为p(0≤p≤length-I)的元素,成功返回l,否则返回0,并将被删除元素的值赋给e。 /*********************************************************** * * file name: * author : 19870326
阅读全文