会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
成强
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
22
下一页
2024年6月30日
02-单链表的操作
摘要: 单链表的创建:头插法 #include <stdio.h> #include <malloc.h> #include <stdbool.h> typedef int ElemType; /*定义一个单链表*/ typedef struct LNode{ ElemType data; /*下一个元素的
阅读全文
posted @ 2024-06-30 00:14 成强
阅读(27)
评论(0)
推荐(0)
2024年6月29日
顺序表
摘要: 顺序表的初始化:静态分配 /*指定 int 的别名 */ typedef int ElemType; /*数组的最大容量*/ #define MaxSize 50 typedef struct Sqlist{ ElemType data[MaxSize]; int length; } Sqlist;
阅读全文
posted @ 2024-06-29 20:01 成强
阅读(37)
评论(0)
推荐(0)
2024年6月28日
C语言的函数
摘要: #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 成强
阅读(17)
评论(0)
推荐(0)
C语言的数组
摘要: #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 成强
阅读(22)
评论(0)
推荐(0)
C语言的结构体
摘要: #include <stdio.h> int main() { /*定义一个结构体*/ struct Student{ int age; short name; }; /*使用这个结构体定义一个新的变量*/ struct Student chengqiang; /* typedef:给数据类型起一个
阅读全文
posted @ 2024-06-28 21:41 成强
阅读(19)
评论(0)
推荐(0)
0628+单词
摘要: illustrate :v.说明,举例 defective :adj.有缺陷的 perfect :adj.完美的 mortality :n.死亡 universal :adj.普遍的 fierce :adj.激烈的 widespread :adj.普遍的 pour :v.倾泻 leakage :n泄
阅读全文
posted @ 2024-06-28 00:04 成强
阅读(37)
评论(0)
推荐(0)
2024年6月27日
C语言基础-指针
摘要: #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 成强
阅读(24)
评论(0)
推荐(0)
2024年6月26日
阅读视频方法笔记
摘要: 唐-阅读经典真题集训01: 先看题干,不看选项,再看文章。2篇/4篇 题干中重复的信息就是文章的中心思想。 ABCD全部都含有的信息,一定是正确的 √ 。 阅读的本质是逻辑: 1.学会抓作者的态度:adj 形容词;adv 副词 2.句子间的逻辑关系;段落间的逻辑关系; 不担心做错;只担心自己做对(人
阅读全文
posted @ 2024-06-26 00:39 成强
阅读(33)
评论(0)
推荐(0)
2024年6月25日
0625+单词
摘要: intense adj.激烈的;;专注的 pave the way 为……作准备
阅读全文
posted @ 2024-06-25 00:39 成强
阅读(10)
评论(0)
推荐(0)
2023年3月30日
qt使用vscode编译打包后各种.dll缺失问题
摘要: 1、缺少qt相关库 找到使用的编译工具目录地址:例如使用 C:\Qt\Qt5.9.1\5.9.1\msvc2017_64\bin 使用命令行工具cmd, 输入windeployqt.exe 手动拖拽编译后的 可执行程序exe到命令行 回车 注意:由于部分c++库因为权限问题无法自动拷贝,需要手动复制
阅读全文
posted @ 2023-03-30 12:40 成强
阅读(634)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
22
下一页