Markdown的使用 标题 三级标题 四级标题 字体样式 Hey,White hat! :’** 内容 **‘ Hey,White hat! :'* 内容 *' Hey,White hat! :'*** ***' Hey,White hat! :' ' Hey,White hat!:' ' Hey ...
分类:
其他好文 时间:
2021-02-08 12:18:24
阅读次数:
0
1.下载mysqlhttps://dev.mysql.com/downloads/mysql/操作系统选RedHat依次下载四个安装包mysql-community-common-5.7.33-1.el7.x86_64.rpmmysql-community-libs-5.7.33-1.el7.x86 ...
分类:
数据库 时间:
2021-02-06 11:41:02
阅读次数:
0
1.查看当前系统版本 cat /etc/redhat-release 2.查看端口使用 netstat -lnpt 3.检查端口被哪个进程占用 netstat -lnpt|grep 22 4.查看进程信息 ps 1091 5.终止进程 kill -9 1091 ...
分类:
系统相关 时间:
2021-02-02 11:04:47
阅读次数:
0
http://cs231n.stanford.edu/ CS231A: Computer Vision, From 3D Reconstruction to Recognition http://web.stanford.edu/class/cs231a/ computer vision http: ...
分类:
其他好文 时间:
2021-02-02 11:02:55
阅读次数:
0
题意 给出N个结点的地址address、数据域data以及指针域next,然后给出链表的首地址,要求把在这个链表.上的结点按data值从小到大输出。 样例解释 按照输入,这条链表是这样的(结点格式为[address, data,next]): [00001, 0, 22222]→[22222, 10 ...
分类:
其他好文 时间:
2021-02-01 13:02:52
阅读次数:
0
有几个参考资料写得挺好的 一个是NXP出的I2C规范和用户手册,直接搜索UM10204 pdf即可 还有一个是ADI出的技术文章 https://www.analog.com/en/technical-articles/i2c-primer-what-is-i2c-part-1.html https ...
分类:
其他好文 时间:
2021-02-01 12:23:47
阅读次数:
0
? Trung is bored with his mathematics homeworks. He takes a piece of chalk and starts writing a sequence of consecutive integers starting with 1 to N ...
分类:
其他好文 时间:
2021-02-01 12:17:16
阅读次数:
0
使用VMware安装CentOS 6.4 环境:Windows7 , VMware Workstation10, CentOS6.4 为什么选择CentOS ? 主流: 目前的Linux操作系统主要应用于生产环境,主流企业级Linux系统仍旧是RedHat或者CentOS 免费: RedHat 和C ...
分类:
系统相关 时间:
2021-01-30 12:21:09
阅读次数:
0
Gradient Descent and Linear Regression with PyTorch Part 2 of "Deep Learning with Pytorch: Zero to GANs" This tutorial series is a hands-on beginner-f ...
分类:
其他好文 时间:
2021-01-30 12:07:44
阅读次数:
0
冒泡排序 基本介绍 冒泡排序(Bubble Sorting)的基本思想是:通过对待排序序列从前向后(从下标较小的元素开始),依次比较相邻元素的值,若发现逆序则交换,使值较大的元素逐渐从前移向后部,就象水底下的气泡一样逐渐 向上冒。 算法优化 因为排序的过程中,各元素不断接近自己的位置,如果一趟比较下 ...
分类:
编程语言 时间:
2021-01-27 13:07:53
阅读次数:
0