摘要:
[三极管]:三极管工作原理(百度AI) 一、三极管工作原理 二、发射结正偏 三、发射结反偏 四、基极、集电极、发射极 五、参考资料 1、 三极管的工作原理 - https://www.baidu.com/s?word=三极管的工作原理&rsv_dl=DQA_PC_COPY 2、 发射结正偏 - ht 阅读全文
摘要:
[c/cpp]:递归算法:汉诺塔问题代码 一、代码 1 #include <iostream> 2 3 4 using namespace std; 5 6 7 // plate_numbers=n; 8 // from_stick=from; 9 // target_stick=to; 10 // 阅读全文
摘要:
[c/cpp]:字母大小写转换 一、代码 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 5 6 char ip1[] = "01234567890AbcDEf"; 7 char ip2[] = "01234567890 阅读全文
摘要:
[c/cpp]:字符计数和文本行计数 一、代码 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 5 6 char input[] = "1\n2\n3\n"; 7 8 9 // string_length = strin 阅读全文
摘要:
[os/linux]:计算机中的编码和解码(ASCII) 一、ASCII(American Standard Code For Information Interchange)简介 1、 在二进制的计算机中,ASCII用‘8位二进制数值’表示一个‘字符’;这样就形成了“字符”和“数值”之间的对应关系 阅读全文
摘要:
[linux] 内核模块的编译(百度AI整理) 一、正文内容 [linux] 内核模块的编译(百度AI整理) 在Linux中编译内核模块通常涉及以下步骤: 一、 安装必要的工具和库(ubuntu): sudo apt-get install build-essential linux-headers 阅读全文
摘要:
[c/cpp]:函数指针数组的应用(模拟系统调用) 一、说明 1、 函数指针数组: 一个指针数组,它的元素是函数指针;函数指针数组。 二、程序代码 1 [root@rocky:test]# cat syscalls.c 2 #include <stdio.h> 3 #include <stdlib. 阅读全文
摘要:
[c/cpp]:指向函数的指针数组(函数指针的数组) 〇、说明: 1、 函数指针: 一个指针,它指向一个函数。 2、 函数指针数组: 一个指针数组,它的元素是函数指针。 一、程序代码 1 [root@rocky:test]# cat test.c 2 #include <stdio.h> 3 #in 阅读全文
摘要:
俄语学习丨俄语入门正确的学习顺序 焕华小助手 焕华出国留学资讯 2024年10月21日 17:33 新疆( 原文网址 ) 阅读全文
摘要:
[nasm]: nasm汇编语言笔记和心得 一、笔记内容 1. ascii: 分为ascii字符和ascii码值 -- ascii字符 ascii码值 | ascii码值(十进制) ascii码值(十六进制) | A 65 0x41 | a 97 0x61 | 0 48 0x30 | 1 49 0x 阅读全文