会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
IvanNotOnlyFat
Ivan不只胖
博客园
首页
新随笔
联系
订阅
管理
2020年10月20日
Git命令
摘要: 通用命令 git 提交 add 是从本地工作空间提交到缓冲区,可用git status查看 可用git reset HEAD回退撤销 commit 是从缓冲区提交到本地的仓库,等待与远程仓库同步 push 是从本地仓库,同步到远程仓库。 git下载 clone git clone 拷贝一个 Git
阅读全文
posted @ 2020-10-20 17:11 IvanNotOnlyFat
阅读(76)
评论(0)
推荐(0)
2020年9月7日
select_socket
摘要: /* 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)
简单socket
摘要: /************************************************************************* > File Name: 2_server1.c > Author: IvanLxy > Mail: yoyiyyo@163.com > Create
阅读全文
posted @ 2020-09-07 21:34 IvanNotOnlyFat
阅读(80)
评论(0)
推荐(0)
2020年9月3日
八大排序
摘要: 数据结构八大排序中的图解 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)
公告