摘要:
#include "tcp.h" #include "all.h" #include "db.h" #define N 100 int main(void) { int skt = tcp_server_init("0.0.0.0", 8888, 10); //创建一张文件描述符集合表 fd_set 阅读全文
摘要:
queue.h #ifndef _QUEUE_H #define _QUEUE_H #include "all.h" #define LEN 3 //定义一个描述队列中每一个结点的结构体 typedef struct queuenode { Player *pArr; int MaxLen; int 阅读全文
摘要:
tree.h #ifndef _TREE_H #define _TREE_H #include <stdio.h> #include <stdlib.h> #include <string.h> typedef int data_type; //创建一个树节点 typedef struct tree 阅读全文
摘要:
link.h #ifndef _LINK_H #define _LINK_H #include<stdio.h> #include<string.h> #include<stdlib.h> #define N 10 typedef int data_type; //节点 typedef struct 阅读全文
摘要:
二进制数的极限和特殊值 假设只有1bit(8位) 1、最大值 注:2^7-1 = 128=1 = 127(因为要想表达正数最高位必须为0)(2^7表示有多少种组合包括全0所以要-1) 2、最小值 注:2^8 = 128(因为要想表达负数最高位必须为1)(其他全0为最大) 3、-1 注:首位为1其他全 阅读全文
摘要:
每次都会更新 APP:pthread.c gcc -g $^ -o APP -lpthread R: ./APP cl: rm -rf ./APP 每次都需要删除后再次编译才能更新 APP: gcc -g pthread.c -o APP -lpthread R: ./APP cl: rm -rf 阅读全文
摘要:
![](https://img2022.cnblogs.com/blog/2468371/202205/2468371-20220513113412690-521381443.jpg) ![](https://img2022.cnblogs.com/blog/2468371/202205/2468371-20220513113425426-1284812033.jpg) ![](https://i 阅读全文
摘要:
第二天 对字符串的处理,Range 切片 //从a到b以步长为n进行切片 str[a: b: n] 函数 //用find()函数查找指定字符在字符串中的位置 //返回一个位置,若没有返回-1 str.find('r')判断字符串的开头字符 //count()统计字符串中单个字符出现的次数 //str 阅读全文
摘要:
Python中print print("12{1}14{0}".format("13","15")) 注意:{}里面的1、2啥的可以不填,不填就按照默认顺序来 阅读全文
摘要:
设置QStackedWidget背景 设置QStackedWidget背景时其他在窗口内的内容样式均发生改变的解决办法: QStackedWidget#stackedWidget{background-image: url(:/new/pix/pix/jianbian.jpg);} 阅读全文