管理系统 layout 2021-08-14 约 339 字 预计阅读 1 分钟 管理系统layout 总结 参考文档链接 视频 14分钟学习 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 32 33 34 35 36 37 38 39 40 41 42 43 44 阅读更多
红黑树、哈希表、堆【网友收集】 2021-08-14 约 886 字 预计阅读 2 分钟 红黑树、哈希表、堆 红黑树 红黑树的每个节点上都有存储位表示节点的颜色,可以是红(Red)或黑(Black)。 红黑树的特性: (1)每个节点或者是 阅读更多
回文子序列 2021-08-14 约 351 字 预计阅读 1 分钟 给定一个长度为 nn 的整数序列 a1,a2,…,an 请你判断序列 aa 是否包含长度至少为 33 的回文子序列? 输入格式 第一行包含整数 T ,表示共有 T 组测试数据 阅读更多
机器学习基本概念 2021-08-14 约 94 字 预计阅读 1 分钟 基本概念 开发环境准备 virtualenv 1 2 3 4 5 6 7 8 pip install virtualenv virtualenv venv_tensorflow cd ven_tensorflow cd Scripts ./activate # 激活命令后 ,再安装 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ --upgrade tensorflow 参考学习视频 https://www.imooc.com/video/21017 参考黑马的学习视频 https://www.bilibili.com/video/BV17y4y1m737?from=search&seid=15321442391462308172&spm_id_from=333.337.0.0 理论课程: https://www.bilibili.com/video/BV1hM4y157xX?from=search&seid=15321442391462308172&spm_id_from=333.337.0.0 NLP 的 阅读更多
基本模板 2021-08-14 约 1481 字 预计阅读 3 分钟 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 import axios from "axios"; import {message} from 'antd' axios.defaults.baseURL='http://localhost:8081/' const getToken = ()=> { let token = sessionStorage.getItem('token') return token||""; } axios.defaults.headers.common['token'] = 阅读更多
基础语法学习【router-view】 2021-08-14 约 55 字 预计阅读 1 分钟 基础 语法学习 参考博客 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <template> <section class="app-main"> <transition name="fade-transform" mode="out-in"> <router-view :key="key" /> </transition> </section> </template> <script> export default { name: 'AppMain', computed: { key() { return this.$route.path; } } }; </script> 阅读更多
基于HashMap的内存优化方法 2021-08-14 约 226 字 预计阅读 1 分钟 hashMap优化方法总结 hashMap 默认 是16的数组长度,非常的耗费内存 如果知道了数据具体的数量,并且指定 hashMap 的 具体容量 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 阅读更多
快速排序算法 2021-08-14 约 111 字 预计阅读 1 分钟 快速排序算法的基本原理 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 #include <iostream> #include <vector> using namespace std; vector<int> arr = {3,4,8,1,2,3}; void quicksort(int l ,int r) { if(l>=r) return; int i = l-1,j = r+1; int pivot = 阅读更多