摘要: 使用vscode打开项目,首先确认git工作区是否是干净的 git status 创建一个新的分析,存放一个功能,等所有的功能都开发完成后,再进行合并(master) 创建一个login git 分支 git checkout -b login 查看当前项目的所有分支 git branch * lo 阅读全文
posted @ 2021-11-08 16:02 成强 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 单链表的创建:头插法 #include <stdio.h> #include <malloc.h> #include <stdbool.h> typedef int ElemType; /*定义一个单链表*/ typedef struct LNode{ ElemType data; /*下一个元素的 阅读全文
posted @ 2024-06-30 00:14 成强 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 顺序表的初始化:静态分配 /*指定 int 的别名 */ typedef int ElemType; /*数组的最大容量*/ #define MaxSize 50 typedef struct Sqlist{ ElemType data[MaxSize]; int length; } Sqlist; 阅读全文
posted @ 2024-06-29 20:01 成强 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #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 阅读全文
posted @ 2024-06-28 22:55 成强 阅读(1) 评论(0) 推荐(0) 编辑
摘要: #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; 阅读全文
posted @ 2024-06-28 21:50 成强 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { /*定义一个结构体*/ struct Student{ int age; short name; }; /*使用这个结构体定义一个新的变量*/ struct Student chengqiang; /* typedef:给数据类型起一个 阅读全文
posted @ 2024-06-28 21:41 成强 阅读(3) 评论(0) 推荐(0) 编辑
摘要: illustrate :v.说明,举例 defective :adj.有缺陷的 perfect :adj.完美的 mortality :n.死亡 universal :adj.普遍的 fierce :adj.激烈的 widespread :adj.普遍的 pour :v.倾泻 leakage :n泄 阅读全文
posted @ 2024-06-28 00:04 成强 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { // 定义一个变量a=150 int a = 150; printf("打印变量a:%d\n", a); // 定义一个指针变量,用于存放变量的地址 int *p; // p的值 = a的地址 p = &a; // 打印地址,使用%p格 阅读全文
posted @ 2024-06-27 00:19 成强 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 唐-阅读经典真题集训01: 先看题干,不看选项,再看文章。2篇/4篇 题干中重复的信息就是文章的中心思想。 ABCD全部都含有的信息,一定是正确的 √ 。 阅读的本质是逻辑: 1.学会抓作者的态度:adj 形容词;adv 副词 2.句子间的逻辑关系;段落间的逻辑关系; 不担心做错;只担心自己做对(人 阅读全文
posted @ 2024-06-26 00:39 成强 阅读(2) 评论(0) 推荐(0) 编辑
摘要: intense adj.激烈的;;专注的 pave the way 为……作准备 阅读全文
posted @ 2024-06-25 00:39 成强 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1、缺少qt相关库 找到使用的编译工具目录地址:例如使用 C:\Qt\Qt5.9.1\5.9.1\msvc2017_64\bin 使用命令行工具cmd, 输入windeployqt.exe 手动拖拽编译后的 可执行程序exe到命令行 回车 注意:由于部分c++库因为权限问题无法自动拷贝,需要手动复制 阅读全文
posted @ 2023-03-30 12:40 成强 阅读(317) 评论(0) 推荐(0) 编辑