03 2020 档案

07.数据结构重要性讨论
摘要:原文:https://www.cnblogs.com/wanmeishenghuo/p/9496032.html 内容参考: 狄泰软件学院相关教程 阅读全文

posted @ 2020-03-29 15:40 lh03061238 阅读(150) 评论(0) 推荐(0) 编辑

06.算法效率的度量
摘要:原文:https://www.cnblogs.com/wanmeishenghuo/p/9495977.html 内容参考: 狄泰软件学院相关教程 常见的时间复杂度如下: 常见的时间复杂度的比较: 实例分析: 从上图的分析中,最坏的情况更具有现实的意义。 当算法在最坏的情况下仍能满足需求时,可以推断 阅读全文

posted @ 2020-03-29 15:04 lh03061238 阅读(159) 评论(0) 推荐(0) 编辑

ARM交叉编译器GNUEABI、NONE-EABI、ARM-EABI、GNUEABIHF等的区别(转)
摘要:原文:https://www.cnblogs.com/deng-tao/p/6432578.html 命名规则: 交叉编译工具链的命名规则为:arch [-vendor] [-os] [-(gnu)eabi] arch - 体系架构,如ARM,MIPS verdor - 工具链提供商 os - 目标 阅读全文

posted @ 2020-03-27 17:33 lh03061238 阅读(714) 评论(0) 推荐(0) 编辑

C++中函数返回值是一个对象时的问题(转)
摘要:原文链接:https://www.cnblogs.com/yanhai307/p/10935665.html 参考链接: https://www.cnblogs.com/mini-coconut/p/8542560.html https://www.cnblogs.com/ysherlock/p/7 阅读全文

posted @ 2020-03-27 13:46 lh03061238 阅读(660) 评论(0) 推荐(0) 编辑

EMMC总结
摘要:eMMC基本架构:https://blog.csdn.net/wangguchao/article/details/102859553?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relev 阅读全文

posted @ 2020-03-24 14:43 lh03061238 阅读(486) 评论(0) 推荐(1) 编辑

C++中的枚举(转)
摘要:原文链接:https://blog.csdn.net/bruce_0712/article/details/54984371 参考: https://www.cnblogs.com/JCSU/articles/1299051.html https://blog.csdn.net/fe7love/ar 阅读全文

posted @ 2020-03-21 16:21 lh03061238 阅读(481) 评论(0) 推荐(0) 编辑

内存区划分、内存分配、常量存储区、堆、栈、自由存储区、全局区[C++][内存管理](转)
摘要:原文:https://www.cnblogs.com/JCSU/articles/1051579.html 参考链接: https://blog.csdn.net/weixin_40306859/article/details/90232204?depth_1-utm_source=distribu 阅读全文

posted @ 2020-03-20 17:40 lh03061238 阅读(560) 评论(0) 推荐(0) 编辑

C++ 模板技术
摘要:参考: 狄泰相关教程:https://www.cnblogs.com/wanmeishenghuo/p/9588903.html C++函数模板(模板函数)详解 :https://blog.csdn.net/low5252/article/details/94622335 函数模板和类模板:http 阅读全文

posted @ 2020-03-19 18:22 lh03061238 阅读(128) 评论(0) 推荐(0) 编辑

C++ static成员函数(转)
摘要:原文链接:https://blog.csdn.net/chengqiuming/article/details/89738995 参考链接: https://blog.csdn.net/weixin_41783335/article/details/92784826 https://blog.csd 阅读全文

posted @ 2020-03-17 14:59 lh03061238 阅读(1456) 评论(0) 推荐(0) 编辑

C++ static cons或 cons static成员变量
摘要:原文链接:https://www.cnblogs.com/xiezhw3/p/4354601.html 推荐参考: https://blog.csdn.net/tobefxz/article/details/14109697 https://blog.csdn.net/weixin_40539125 阅读全文

posted @ 2020-03-17 14:58 lh03061238 阅读(278) 评论(0) 推荐(0) 编辑

C++ const以及它们的初始化(转)
摘要:原文链接: https://blog.csdn.net/qq_40416052/article/details/82655736?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant 阅读全文

posted @ 2020-03-17 13:45 lh03061238 阅读(931) 评论(0) 推荐(0) 编辑

03.初识程序的灵魂
摘要:原文:https://www.cnblogs.com/wanmeishenghuo/p/9484777.html 内容参考: 狄泰软件学院相关教程 程序并不是越短越好。 数据结构静态的描述了数据元素之间的关系。 高效的程序需要在数据结构的基础上设计和选择算法 高效的程序包括:恰当的数据结构和合适的算 阅读全文

posted @ 2020-03-15 21:46 lh03061238 阅读(118) 评论(0) 推荐(0) 编辑

02.数据的艺术
摘要:原文: https://www.cnblogs.com/wanmeishenghuo/tag/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/default.html?page=4 内容参考: 狄泰软件学院相关教程 数据的概念: 程序操作的对象,用于描述客观事物 数据的特点 阅读全文

posted @ 2020-03-15 21:11 lh03061238 阅读(112) 评论(0) 推荐(0) 编辑

C++多态原理及实现分析
摘要:原文链接:https://www.cnblogs.com/alinh/p/9636352.html 参考链接: https://blog.csdn.net/genzld/article/details/83514910 https://blog.csdn.net/qq_40840459/articl 阅读全文

posted @ 2020-03-14 13:22 lh03061238 阅读(249) 评论(0) 推荐(0) 编辑

C++ 对象模型分析
摘要:参考:https://www.cnblogs.com/wanmeishenghuo/p/9581270.html 参考文章:https://coolshell.cn/articles/12176.html 测试代码: #include <iostream> #include <string> usi 阅读全文

posted @ 2020-03-13 14:53 lh03061238 阅读(107) 评论(0) 推荐(0) 编辑

函数指针
摘要:原文链接:https://blog.csdn.net/lishun1422840684/article/details/83755506 参考: https://www.cnblogs.com/renyuan/p/5268094.html https://www.jb51.net/article/8 阅读全文

posted @ 2020-03-13 14:07 lh03061238 阅读(120) 评论(0) 推荐(0) 编辑

linux 内核开发参考资料
摘要:参考链接 https://blog.csdn.net/xiezhi123456/category_7609249.html https://blog.csdn.net/gatieme/category_9265324.html 阅读全文

posted @ 2020-03-12 18:43 lh03061238 阅读(112) 评论(0) 推荐(0) 编辑

C语言写一个类
摘要:ClassDemo代表一个类,Demo_Create相当于构造函数。 运行结果如下: 主函数第12行直接通过d指针修改mi的值,会编译报错: 从面向对象的观点来看,mi是私有的,我们不能从外部访问。 而在C语言中没有private关键字,我们是通过void*指针来实现的。通过void这样的技术来实现 阅读全文

posted @ 2020-03-12 17:37 lh03061238 阅读(790) 评论(0) 推荐(0) 编辑

Qt: QDropEvent拖拽事件,拖拽打开文件
摘要:参考文章:https://blog.csdn.net/rl529014/article/details/53057577?locationNum=8&fps=1 参考链接: https://www.jianshu.com/p/48f007c2de09 https://www.cnblogs.com/ 阅读全文

posted @ 2020-03-11 15:49 lh03061238 阅读(636) 评论(0) 推荐(0) 编辑

QT环境安装参考(不同版本)
摘要:Qt5.9.2 (MinGW5.3.0 32bit)+ opencv3.3.1 环境配置 https://blog.csdn.net/Sin1997/article/details/78512538/ Windows 下搭建 Qt5.x+ 的开发环境 https://segmentfault.com 阅读全文

posted @ 2020-03-08 23:28 lh03061238 阅读(827) 评论(0) 推荐(0) 编辑

Linux驱动虚拟地址和物理地址的映射(转)
摘要:原文地址:http://blog.chinaunix.net/uid-20792373-id-2979673.html 参考链接: Linux 虚拟地址与物理地址的映射关系分析 https://blog.csdn.net/ordeder/article/details/41630945 虚拟地址映射 阅读全文

posted @ 2020-03-08 15:25 lh03061238 阅读(1934) 评论(0) 推荐(0) 编辑

perl语言 入门(转)
摘要:原文链接 https://www.jianshu.com/p/2dc7bef783ed 参考链接 perl入门 https://blog.csdn.net/ruby912/article/details/90721475 nux系统一般自带perl,可以在命令行运行。 1.Hello,World # 阅读全文

posted @ 2020-03-06 15:25 lh03061238 阅读(271) 评论(0) 推荐(0) 编辑

红黑树
摘要:参考链接: 30张图带你彻底理解红黑树 https://www.jianshu.com/p/e136ec79235c 红黑树,超强动静图详解,简单易懂 https://www.jianshu.com/p/104fa73c81b3 漫画:什么是红黑树 https://baijiahao.baidu.c 阅读全文

posted @ 2020-03-05 21:06 lh03061238 阅读(120) 评论(0) 推荐(0) 编辑

Linux内核数据结构映射-idr(转)
摘要:原文:https://blog.csdn.net/m0_37128231/article/details/96727068?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.no 阅读全文

posted @ 2020-03-04 21:44 lh03061238 阅读(701) 评论(0) 推荐(0) 编辑

gcc编译选项
摘要:GCC 参数详解 https://www.runoob.com/w3cnote/gcc-parameter-detail.html gcc编译选项总结 https://blog.csdn.net/gatieme/article/details/21389603 linux gcc常用编译选项总结 h 阅读全文

posted @ 2020-03-04 14:54 lh03061238 阅读(212) 评论(0) 推荐(0) 编辑

内核数据结构 —— 内核队列 (kfifo)(转)
摘要:原文链接:https://blog.csdn.net/zhoutaopower/article/details/86491852 参考链接:https://blog.csdn.net/fuyajun01/article/details/7413579?depth_1-utm_source=distr 阅读全文

posted @ 2020-03-03 21:37 lh03061238 阅读(811) 评论(0) 推荐(0) 编辑

【Linux + Makefile】Makefile中的.PHONY作用以及赋值运算(各种=符号)的区别(转)
摘要:原文链接:https://blog.csdn.net/szullc/article/details/86556809 参考链接:https://blog.csdn.net/tonglin12138/article/details/88636170?depth_1-utm_source=distrib 阅读全文

posted @ 2020-03-02 17:48 lh03061238 阅读(599) 评论(0) 推荐(0) 编辑

perl脚本基础总结(转)
摘要:原文链接: https://www.cnblogs.com/resie/p/4459571.html 参考链接: https://www.jb51.net/list/list_125_1.htm https://www.runoob.com/perl/perl-syntax.html perl脚本基 阅读全文

posted @ 2020-03-02 17:33 lh03061238 阅读(1722) 评论(0) 推荐(0) 编辑

POSIX和C库
摘要:原文链接:https://www.cnblogs.com/xkfz007/articles/2176983.html 参考链接:https://blog.csdn.net/weixin_42048417/article/details/80949598 https://blog.csdn.net/g 阅读全文

posted @ 2020-03-02 14:49 lh03061238 阅读(1335) 评论(0) 推荐(0) 编辑

MinGW简介
摘要:原文链接:https://blog.csdn.net/whatday/article/details/87112479 参考链接:https://www.cnblogs.com/mfrbuaa/p/4016495.html https://blog.csdn.net/whatday/article/ 阅读全文

posted @ 2020-03-02 13:57 lh03061238 阅读(663) 评论(0) 推荐(0) 编辑

cygwin学习
摘要:原文链接:https://www.cnblogs.com/endv/p/7674720.html 参考链接: https://zhuanlan.zhihu.com/p/56692626 https://www.cnblogs.com/tsingke/p/7998781.html 根据cygwin u 阅读全文

posted @ 2020-03-02 13:51 lh03061238 阅读(555) 评论(0) 推荐(0) 编辑

Linux链表理解
摘要:参考原文:https://www.jianshu.com/p/1c65c76440e4 参考链接: https://my.oschina.net/u/3857782/blog/1849617/ https://blog.csdn.net/u013904227/article/details/5093 阅读全文

posted @ 2020-03-01 21:33 lh03061238 阅读(385) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示