摘要: 通用命令 git 提交 add 是从本地工作空间提交到缓冲区,可用git status查看 可用git reset HEAD回退撤销 commit 是从缓冲区提交到本地的仓库,等待与远程仓库同步 push 是从本地仓库,同步到远程仓库。 git下载 clone git clone 拷贝一个 Git 阅读全文
posted @ 2020-10-20 17:11 IvanNotOnlyFat 阅读(76) 评论(0) 推荐(0)
摘要: /* server.c */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <netinet/in.h> #include <arpa/inet.h> #include "wrap.h" #define MAX 阅读全文
posted @ 2020-09-07 21:35 IvanNotOnlyFat 阅读(77) 评论(0) 推荐(0)
摘要: /************************************************************************* > File Name: 2_server1.c > Author: IvanLxy > Mail: yoyiyyo@163.com > Create 阅读全文
posted @ 2020-09-07 21:34 IvanNotOnlyFat 阅读(80) 评论(0) 推荐(0)
摘要: 数据结构八大排序中的图解 1.排序的基本概念 2.交换类排序法 ✦ 1-冒泡排序 ✦ 2-快速排序 #include <stdio.h> #include <stdlib.h> #include <string.h> int stack[512]; int top = 0; void init_st 阅读全文
posted @ 2020-09-03 23:56 IvanNotOnlyFat 阅读(187) 评论(0) 推荐(0)
摘要: loopnlink #include<stdio.h> #include<stdlib.h> /*带哨兵头结点和tail的环形链表*/ typedef struct node { int item; struct node *next; }node; node sentinel = {0,NULL} 阅读全文
posted @ 2020-09-03 23:50 IvanNotOnlyFat 阅读(152) 评论(0) 推荐(0)