上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 164 下一页
摘要: https://lwn.net/Articles/617824/ tcp: Add TCP_FREEZE socket option From: Kristian Evensen <kristian.evensen@gmail.com> To: netdev@vger.kernel.org Subj 阅读全文
posted @ 2021-01-25 13:11 张同光 阅读(111) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<malloc.h> /* malloc()等 */ #include<process.h> /* exit() */ /* 函数结果状态代码 */ #define TRUE 1 #define FALSE 0 #define OK 1 #defi 阅读全文
posted @ 2020-12-28 08:38 张同光 阅读(187) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<malloc.h> #include<process.h> #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define MAX_TREE_SIZE 100 typedef 阅读全文
posted @ 2020-12-28 08:37 张同光 阅读(97) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<malloc.h> #include<process.h> #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define MAX_TREE_SIZE 100 typedef 阅读全文
posted @ 2020-12-28 08:36 张同光 阅读(125) 评论(0) 推荐(0) 编辑
摘要: //输入只有一行,包含一个字符串S,用来建立二叉树。保证S为合法的二叉树先序遍历字符串,节点内容只有大写字母,且S的长度不超过100。 //共一行,包含一串字符,表示按中序遍历二叉线索树得出的节点内容,每个字母后输出一个空格。请注意行尾输出换行。 //例如;ABC DE G F #include<s 阅读全文
posted @ 2020-12-28 08:34 张同光 阅读(134) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>/*头文件*/ #include<stdlib.h> //定义二叉树结构体 typedef struct BiTNode { char data; struct BiTNode *lchild,*rchild; }BiTNode,*BiTree; void PreO 阅读全文
posted @ 2020-12-28 08:29 张同光 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 20184103151 冯传帅 09 剑客.blend.gif 20184103197 郑铭豪 09 剑客.blend.gif 20184103198 陈锦龙 09 剑客.blend.gif 20185105072 崔高鹏 09 剑客.blend.gif 阅读全文
posted @ 2020-12-26 15:35 张同光 阅读(221) 评论(0) 推荐(0) 编辑
摘要: https://www.if-not-true-then-false.com/2010/install-virtualbox-with-yum-on-fedora-centos-red-hat-rhel/ 1. Install Oracle’s VirtualBox 6.1.16 on Fedora 阅读全文
posted @ 2020-12-26 14:16 张同光 阅读(1606) 评论(0) 推荐(0) 编辑
摘要: Linux操作系统实用教程主 编:张同光CIP核准号:2022005905出版单位:清华大学出版社ISBN:978-7-302-59974-6ISBN:9787302599746出版时间:2022.3页码:363 定价:¥69元 Linux之父Linus Torvalds选择Fedora作为他的日常 阅读全文
posted @ 2020-12-19 08:04 张同光 阅读(1773) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> #include<malloc.h> //定义节点结构体 typedef struct _node{ int value; //定义链表一个节点的数据域 struct _node *next; //定义链表一个节点的指针域 } 阅读全文
posted @ 2020-11-30 23:05 张同光 阅读(227) 评论(0) 推荐(0) 编辑
摘要: /*队列及其基本概念 队列的基本概念 队列(Queue):也是运算受限的线性表。是一种先进先出(First In First Out ,简称FIFO)的线性表。 只允许在表的一端进行插入,而在另一端进行删除。 */ /* 队列的顺序表示和实现 利用一组连续的存储单元(一维数组) 依次存放从队首到队尾 阅读全文
posted @ 2020-11-30 23:03 张同光 阅读(176) 评论(0) 推荐(0) 编辑
摘要: /* 栈的概念: 栈(Stack)的定义:是限制在表的一端进行插入和删除操作的线性表。 又称为后进先出LIFO (Last In First Out)或先进后出FILO (First In Last Out)线性表。 栈顶(Top):允许进行插入、删除操作的一端,又称为表尾。用栈顶指针(top)来指 阅读全文
posted @ 2020-11-30 23:02 张同光 阅读(135) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <malloc.h> #define false 0 #define true 1 typedef struct Node { int data; //数据域 struct Node * pNext; / 阅读全文
posted @ 2020-11-30 23:00 张同光 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 经过连续数月的日日夜夜,终于解决了MPTCP协议在Android移动端难以大规模应用的技术难题。下图中,Android手机通过 WIFI 和 4G 两条路径同时传输视频数据。然而,目前的Android手机要么通过 WIFI 传输数据,要么通过 4G 传输数据,不能够同时使用两条路径。 刷机包:lin 阅读全文
posted @ 2020-11-13 11:28 张同光 阅读(1632) 评论(0) 推荐(0) 编辑
摘要: 荣获清华大学出版社“优秀作者”称号 阅读全文
posted @ 2020-11-03 23:34 张同光 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 6,2,0,-;Boot CPU: AArch64 Processor [517f803c]6,3,0,-;Powerup reason=0x401806,4,0,-;Machine: Xiaomi Technologies, Inc. Dipper new MP v2.16,5,0,-;Reser 阅读全文
posted @ 2020-10-27 18:59 张同光 阅读(1190) 评论(0) 推荐(0) 编辑
摘要: 6,2,0,-;Boot CPU: AArch64 Processor [517f803c]6,3,0,-;Powerup reason=0x401806,4,0,-;Machine: Xiaomi Technologies, Inc. Dipper new MP v2.16,5,0,-;Reser 阅读全文
posted @ 2020-10-27 18:11 张同光 阅读(1406) 评论(0) 推荐(0) 编辑
摘要: 6,86261,128062630,-;MPTCP - /mnt/android/lineage-17.1 dipper/kernel/xiaomi/sdm845/net/mptcp/mptcp_input.c: 2473: mptcp_handle_options6,86262,128062636 阅读全文
posted @ 2020-10-24 23:51 张同光 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 6,5,0,-;Reserved memory: created CMA memory pool at 0x00000000fa000000, size 92 MiB6,6,0,-;OF: reserved mem: initialized node secure_display_region, c 阅读全文
posted @ 2020-10-19 01:59 张同光 阅读(900) 评论(0) 推荐(0) 编辑
摘要: 6,64114,98483615,-;MPTCP - /mnt/android/lineage-17.1 dipper/kernel/xiaomi/sdm845/net/mptcp/mptcp_input.c: 1593: mptcp_process_data_ack6,64115,98483617 阅读全文
posted @ 2020-10-17 00:45 张同光 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 164 下一页