SparseMatrix.h #pragma once #include<iostream> using namespace std; class Tri { public: int col; int row; int value; }; class SparseMatrix { public: i ...
分类:
其他好文 时间:
2020-04-13 10:37:44
阅读次数:
62
SparsrMatrix.h #pragma once #include<iostream> using namespace std; class Tri { public: int row; int col; int value; }; class SparseMatrix { public: i ...
分类:
其他好文 时间:
2020-04-12 12:26:08
阅读次数:
70
242. 有效的字母异位词 难度简单 给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的字母异位词。 示例 1: 输入: s = "anagram", t = "nagaram" 输出: true 示例 2: 输入: s = "rat", t = "car" 输出: false 说 ...
分类:
其他好文 时间:
2020-04-12 00:14:55
阅读次数:
90
基于Docker容器中的pdf2htmlEX转PDF操作说明:https://beltxman.com/2567.html kali linux系统安装docker操作: sudo apt install apt-transport-https ca-certificates curl gnupg- ...
分类:
Web程序 时间:
2020-04-11 23:38:04
阅读次数:
94
一、数据库三大范式: 1、列不可再分。 2、属性依赖于主键。 3、属性直接依赖于主键,不依赖其他属性。 二、数据库事务的四大特性:(ACID) 1、原子性:一个事务的所有操作要么全部完成,要么全部失败回滚。 2、一致性:事务提交前后,数据库整体保持一致性状态。如A、B之间转账后,总金额不变。 3、隔 ...
分类:
数据库 时间:
2020-04-11 20:56:43
阅读次数:
88
网速原因。 $ git clone http://github.com/xxxxx --depth 1 $ cd xxxxx $ git fetch --unshallow ...
分类:
Web程序 时间:
2020-04-11 20:48:11
阅读次数:
82
Integrating Weakly Supervised Word Sense Disambiguation into Neural Machine Translation 一篇关于机器翻译的论文,目的是是将词义信息加到机器翻译模型中,以此缓解机器翻译模型对于多义词翻译不准确的问题。 引入的方法很 ...
分类:
其他好文 时间:
2020-04-11 20:30:33
阅读次数:
91
git init git add git status ...
分类:
其他好文 时间:
2020-04-11 15:52:25
阅读次数:
87
Windows7与deepin双系统安装windowsdeepin深度系统很久以前我就想体验一下deepin系统,Linux的发行版,对中文有比较好的支持,界面也特别的漂亮。这里主要是罗列一下自己从Windows安装这个系统所遇到的那些坑。 有限选择从U盘安装系统先用deepin的官方安装介质软件制... ...
小程序结合php实现支付 小程序支付访问文件 payfee.php: include 'WeixinPay.php';$appid='';$openid= $_GET['id'];$mch_id='';$key='';$out_trade_no = $mch_id. time();$total_fe ...
分类:
微信 时间:
2020-04-11 12:41:54
阅读次数:
95