随笔分类 -  3-syntax

摘要:<! +++ title = "最长上升子序列(LIS)" description = "1. 方法一:动态规划; 2. 方法二:贪心算法(二分法)" date = "2022 01 03" tags = [] categories = ["3 syntax","31 算法"] series = [ 阅读全文
posted @ 2022-01-03 23:02 brt2 阅读(140) 评论(0) 推荐(1) 编辑
摘要:<! +++ title = "排序算法" description = "1. 冒泡排序(Bubble Sort); 2. 选择排序(Selection Sort); 3. 插入排序(Insertion Sort); 4. 希尔排序(Shell Sort); 5. 快速排序(Quick Sort); 阅读全文
posted @ 2022-01-03 23:02 brt2 阅读(149) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "【入门】Protobuf语法与编译" description = "1. protobuf安装; 2. protoc编译指令; 3. 安装gRPC; 4. 安装go micro" date = "2021 12 19" tags = [] categories = [ 阅读全文
posted @ 2021-12-19 23:21 brt2 阅读(222) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "" description = "1. go get 变了" date = "2021 12 19" tags = [] categories = ["3 syntax","37 golang"] series = [] keywords = [] weight = 阅读全文
posted @ 2021-12-19 23:21 brt2 阅读(532) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "Python多路复用: selector模块" description = "1. IO多路复用; 2. selector模块的基本使用" date = "2021 12 21" tags = ["usual"] categories = ["3 syntax","3 阅读全文
posted @ 2021-11-10 06:58 brt2 阅读(320) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "C++ std::thread 多线程" description = "1. 创建线程; 2. 同步 & 互斥; 3. std::async()" date = "2022 01 03" tags = ["usual"] categories = ["3 syntax 阅读全文
posted @ 2021-10-29 07:15 brt2 阅读(767) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "编程模型" description = "1. 事件驱动; 2. 消息驱动; 3. 数据驱动" date = "2022 01 03" tags = ["usual"] categories = ["3 syntax","30 设计模式"] series = [] k 阅读全文
posted @ 2021-10-29 07:15 brt2 阅读(157) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "Bash语法" description = "1. 函数; 2. 条件判断" date = "2021 12 21" tags = [] categories = ["3 syntax","39 others"] series = [] keywords = [] w 阅读全文
posted @ 2021-02-06 16:49 brt2 阅读(107) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "【笔记】经典的5种架构模型" description = "1. 分层架构; 2. 事件驱动架构; 3. 微内核架构" date = "2022 01 03" tags = [] categories = ["3 syntax","30 设计模式"] series = 阅读全文
posted @ 2021-02-06 16:48 brt2 阅读(1416) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "【笔记】常见的架构风格" description = "1. 传统的架构风格; 2. 基于连接件的架构风格划分; 3. 基于场景的架构风格划分; 4. 特定领域架构模型" date = "2022 01 03" tags = [] categories = ["3 s 阅读全文
posted @ 2021-02-06 16:48 brt2 阅读(1495) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "Python源码的编译与加密" description = "1. pyc; 2. pyd" date = "2021 12 21" tags = [] categories = ["3 syntax","33 python"] series = [] keyword 阅读全文
posted @ 2021-01-05 19:30 brt2 阅读(1360) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "遗传算法 Genetic Algorithm" description = "1. 袋鼠蹦跳理论; 2. 对比传统算法; 3. 自适应遗传算法" date = "2022 01 03" tags = [] categories = ["3 syntax","31 算法 阅读全文
posted @ 2020-10-23 20:33 brt2 阅读(644) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "Python+ORM 方案一览" description = "1. 什么是ORM; 2. Python中常用的ORM" date = "2021 12 21" tags = [] categories = ["3 syntax","33 python","3rd m 阅读全文
posted @ 2020-10-23 20:33 brt2 阅读(397) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "C++包管理器" description = "1. vcpkg; 2. conan" date = "2022 01 03" tags = [] categories = ["3 syntax","35 cpp","tools"] series = [] keywo 阅读全文
posted @ 2020-10-13 10:56 brt2 阅读(428) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "Python压缩工具" description = "1. unzip; 2. unrar; 3. p7zip; 4. patool; 5. pyunpack" date = "2022 01 03" tags = [] categories = ["3 syntax 阅读全文
posted @ 2020-10-13 10:56 brt2 阅读(212) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "Lua常用模块" description = "1. IO" date = "2022 01 03" tags = [] categories = ["3 syntax","39 others"] series = [] keywords = [] weight = 阅读全文
posted @ 2020-09-26 17:28 brt2 阅读(413) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "Lua基本语法" description = "1. 注释; 2. 基本数据类型; 3. 变量; 4. 循环; 5. if; 6. function; 7. Lua 模块与包" date = "2022 01 03" tags = [] categories = [" 阅读全文
posted @ 2020-09-26 17:27 brt2 阅读(228) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "【盘点】Python语法中的模糊语义(面试必备)" description = "1. 切片不执行越界检查和报错; 2. 空列表的创建; 3. 重点来了:闭包的延迟绑定" date = "2021 12 21" tags = [] categories = ["3 s 阅读全文
posted @ 2020-09-25 21:13 brt2 阅读(228) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "【笔记】流畅的Python" description = "1. 一摞Python风格的纸牌; 2. 不要使用可变类型作为参数的默认值" date = "2021 12 21" tags = [] categories = ["3 syntax","33 python 阅读全文
posted @ 2020-09-25 21:13 brt2 阅读(304) 评论(0) 推荐(0) 编辑
摘要:<! +++ title = "dbus python的API及示例" description = "1. "Data types" ; 2. Connecting to the Bus; 3. Making method calls (同步调用); 4. Making asynchronous c 阅读全文
posted @ 2020-08-30 18:32 brt2 阅读(1662) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示