返回顶部
上一页 1 2 3 4 5 6 7 8 9 ··· 29 下一页
摘要: Tutorial https://www.w3schools.com/bootstrap4/default.asp Bootstrap 4 Vertical Center How to vertically align anything https://medium.com/wdstack/boot 阅读全文
posted @ 2020-11-06 12:05 Zcb0812 阅读(77) 评论(0) 推荐(0)
摘要: Django中使用faker 构建测试数据库 Django 的 Model: from django.db import models # Create your models here. __allModel__ = [ 'Tag', 'Category', 'Post', ] #Post vs 阅读全文
posted @ 2020-10-10 15:46 Zcb0812 阅读(214) 评论(0) 推荐(0)
摘要: 内容概述及预备知识 预备知识:二叉树定义 代码中的构造 二叉树 : #include <iostream> using namespace std; /* * 二叉树的构造! * */ class TreeNode{ // class 默认是private visiblity | 而c++ 中str 阅读全文
posted @ 2020-09-13 21:50 Zcb0812 阅读(149) 评论(0) 推荐(0)
摘要: How do I thoroughly understand Recursive Algorithm and not feel like recursion is magic? Recursion is magic! But any sufficiently advanced technology  阅读全文
posted @ 2020-09-13 10:40 Zcb0812 阅读(149) 评论(0) 推荐(0)
摘要: 内容概述及预备知识 预备知识:递归函数与回溯算法 #include <iostream> #include <vector> using namespace std; class ListNode{ public: int val; ListNode * next; ListNode(int x): 阅读全文
posted @ 2020-09-12 12:29 Zcb0812 阅读(164) 评论(0) 推荐(0)
摘要: 内容概述及预备知识 预备知识:钞票支付问题: 代码实现: #include <iostream> using namespace std; int main(){ const int RMB[] = {200,100,20,10,5,1}; int kinds = sizeof(RMB)/sizeo 阅读全文
posted @ 2020-09-10 19:16 Zcb0812 阅读(165) 评论(0) 推荐(0)
摘要: 将所有网页都变为黑色 https://agirls.aotter.net/post/56218 指令: chrome://flags/#enable-force-dark 阅读全文
posted @ 2020-09-10 12:46 Zcb0812 阅读(364) 评论(0) 推荐(0)
摘要: 特征检测与描述 理解特征 理解什么是特征,为什么 "拐角 corners" 很重要, 理论: 你们大多数人都会玩拼图游戏。你会得到很多小图像,需要正确组装它们以形成大的真实图像。问题是,你怎么做?将相同的理论投影到计算机程序上,以便计算机可以玩拼图游戏呢?如果计算机可以玩拼图游戏,为什么我们不能给计 阅读全文
posted @ 2020-08-06 21:44 Zcb0812 阅读(131) 评论(0) 推荐(0)
摘要: Windows VS 静态链接库和动态链接库 https://www.cnblogs.com/qinguoyi/p/7257353.html Linux Linux的文件类型: 普通文件: - 目录文件: d dict 链接文件: l link设备文件: 字符设备文件 c char,块设备文件 b 阅读全文
posted @ 2020-08-02 22:32 Zcb0812 阅读(912) 评论(0) 推荐(1)
摘要: 什么是线段树 概念 线段树是一种二元树形数据结构,1977年由Jon Louis Bentley发明,用以储存区间或线段,并且允许快速查询结构内包含某一点的所有区间。 一个包含 n 个区间的线段树,空间複杂度为,查询的时间複杂度则为,其中 , 其中k是符合条件的区间数量。 引例: 假设某大学有一面文 阅读全文
posted @ 2020-07-29 21:05 Zcb0812 阅读(261) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 29 下一页