好物分享
-
HDLBits刷题_Verilog Language_Alwaysblock1
Since digital circuits are composed of logic gates connected with wires, any circuit can be expressed as some combination of modules and assign stat…… -
leetcode461. 汉明距离(easy)
汉明距离 题目描述解题思路代码(api)复杂度代码(移位实现计数)复杂度代码(Brian Kernighan 算法)复杂度 力扣链接 题目描述 两个整数之间的 汉明距离 指的是这…… -
-
汇编语言实现四则运算
32位加32位部分代码: MOV AX, A ;将A的值放入AX寄存器 ADD AX, B ;将B的值和AX中的值相加 MOV C, AX ;将AX中的值赋给C MOV AX, A+2 …… -
TiDB4PG之兼容Gitlab
前言 在数据库流行度排名上,PostgreSQL 和 MySQL 都是名列前茅的存在,他们如此受欢迎,说明他们的优势非常强悍。虽然 PostgreSQL 和 MySQL 各有千秋,但是不…… -
DP之最长公共子序列
#include using namespace std; int main() { char a[100],b[100]; char x; int n1=1,n2=1; while(cin>>x) { a[n1++]=x; if(ci…… -
c++实现KMP算法
原理我相信大家已经了解的差不多了,现在看看实际代码吧 cpp: // cpp实现kmp算法 #include #include using namespace std; #include vector getnextarr(string…… -
一篇杂乱无章的中职教资面试备考学习笔记(计算机应用)
中职教师基础认知 一、专业概述 计算机专业主要课程、课程重点难点,课程特点等 二、职业学校需要什么样的老师? “双师型”:既能讲理论知识,又能在实训课程指…… -
-
typora : excel 直接复制到typora中
1 excel --------> html: http://pressbin.com/tools/excel_to_html_table/index.html Copy your Excel spreadsheet data, and paste it into this text box……