摘要:
单链表的创建:头插法 #include <stdio.h> #include <malloc.h> #include <stdbool.h> typedef int ElemType; /*定义一个单链表*/ typedef struct LNode{ ElemType data; /*下一个元素的 阅读全文
摘要:
顺序表的初始化:静态分配 /*指定 int 的别名 */ typedef int ElemType; /*数组的最大容量*/ #define MaxSize 50 typedef struct Sqlist{ ElemType data[MaxSize]; int length; } Sqlist; 阅读全文
摘要:
#include <stdio.h> #include <malloc.h> /** * 1.定义一个值传递函数 * @param a 变量值 * @param b 变量值 */ void swap_value(int a , int b){ int temp; temp =a; a=b; b=te 阅读全文
摘要:
#include <stdio.h> #include <malloc.h> int main() { /*创建静态数组*/ int a[5]; a[0]=0; a[1]=1; int b[]={1,2,3,4}; typedef struct Student{ int age; }Student; 阅读全文
摘要:
#include <stdio.h> int main() { /*定义一个结构体*/ struct Student{ int age; short name; }; /*使用这个结构体定义一个新的变量*/ struct Student chengqiang; /* typedef:给数据类型起一个 阅读全文
摘要:
illustrate :v.说明,举例 defective :adj.有缺陷的 perfect :adj.完美的 mortality :n.死亡 universal :adj.普遍的 fierce :adj.激烈的 widespread :adj.普遍的 pour :v.倾泻 leakage :n泄 阅读全文
摘要:
#include <stdio.h> int main() { // 定义一个变量a=150 int a = 150; printf("打印变量a:%d\n", a); // 定义一个指针变量,用于存放变量的地址 int *p; // p的值 = a的地址 p = &a; // 打印地址,使用%p格 阅读全文
摘要:
唐-阅读经典真题集训01: 先看题干,不看选项,再看文章。2篇/4篇 题干中重复的信息就是文章的中心思想。 ABCD全部都含有的信息,一定是正确的 √ 。 阅读的本质是逻辑: 1.学会抓作者的态度:adj 形容词;adv 副词 2.句子间的逻辑关系;段落间的逻辑关系; 不担心做错;只担心自己做对(人 阅读全文
摘要:
intense adj.激烈的;;专注的 pave the way 为……作准备 阅读全文
摘要:
1、缺少qt相关库 找到使用的编译工具目录地址:例如使用 C:\Qt\Qt5.9.1\5.9.1\msvc2017_64\bin 使用命令行工具cmd, 输入windeployqt.exe 手动拖拽编译后的 可执行程序exe到命令行 回车 注意:由于部分c++库因为权限问题无法自动拷贝,需要手动复制 阅读全文