首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
demon专题
奋斗的demon——基本计数方法(实践一)
今天demon要应用昨天的理论练习: 大白老师布置了2个基本计数类型题目(象棋中的皇后,数三角形,有多少个0) 1个容斥原理题目(拉拉队) 1个二项式系数题目(超级平均数) 【例1.1 象棋中的皇后】(基本计数原理) 【题目描述】 你可能知道象棋怎么下以及皇后的移动规则。当两个皇后在同一行、同一列或同一条斜线上时,她们就会互相攻击。假设两个这样的皇后(一黑一白)被放在一个2×2
阅读更多...
linux驱动.之 tty uart应用层测试工具demon(一)
tty_uart_test.c 测试程序 #include <fcntl.h>#include <stdint.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <string.h>#include <getopt.h> #include <termios.h>#include
阅读更多...
linux驱动.之 网络udp应用层测试工具demon(一)
绑定vlan,网卡的demon,如果有多个网卡,多个vlan,网卡的ip设置成一致,那就不能只简单绑定ip来创建socket, 需要绑定网卡设备 客户端udp_client.c #include <stdio.h>#include <string.h>#include <unistd.h>#include <stdlib.h>#include <sys/types.h>#inclu
阅读更多...
C之基于signal实现定时器的demon
#include <stdio.h>#include <signal.h>#include <unistd.h>void sigroutine(int dunno) { /* 信号处理例程,其中dunno将会得到信号的值 */printf("signal id=%d\n",dunno);switch (dunno) { case 1: printf("Get a signal -- SI
阅读更多...