链接:https://leetcode-cn.com/problems/biao-shi-shu-zhi-de-zi-fu-chuan-lcof/submissions/ 代码: class Solution { public: bool isNumber(string s) { if (s.emp ...
分类:
其他好文 时间:
2020-02-22 20:14:08
阅读次数:
71
输入给出m条边,要求找到一条最长的路径满足边按照输入的顺序出现并且权值严格递增 两种方法:第一种利用单调队列性质 第二种利用数据结构优化 #include<bits/stdc++.h> #define forn(i, n) for (int i = 0 ; i < int(n) ; i++) #de ...
分类:
其他好文 时间:
2020-02-22 16:06:17
阅读次数:
69
下面是一段司空见惯的代码,创建两个线程A和线程B,使得线程A优先于线程B执行,使得线程B优先于主线程执行 输出结果: 它是如何做到的线程A优先于线程B,线程B优先于主线程的呢? 为了说明这点,就要查看Thread.join的源码了: c++ void JavaThread::exit(bool de ...
分类:
其他好文 时间:
2020-02-22 16:06:02
阅读次数:
71
如果进行重复序列的预测,则使用RepeatModeler,可自身比对进行查找 安装 (1)下载地址:http://www.repeatmasker.org/RepeatModeler/ (2)RepeatModeler安装之前需要安装以下软件 perl RECON - De Novo Repeat ...
分类:
其他好文 时间:
2020-02-22 15:36:56
阅读次数:
300
uboot源码下载: 所有版本的u-boot源代码压缩包都可以在ftp://ftp.denx.de/pub/u-boot/下载关于u-boot源代码的信息 http://www.denx.de/wiki/U-Boot/SourceCode获得U-Boot的最新版本 https://sourcefor ...
分类:
其他好文 时间:
2020-02-22 00:28:44
阅读次数:
74
摘自:http://libusb.sourceforge.net/api-1.0/group__libusb__dev.html#gaf2718609d50c8ded2704e4051b3d2925 uint8_t libusb_get_bus_number ( libusb_device * de ...
分类:
其他好文 时间:
2020-02-21 20:10:59
阅读次数:
351
1、下载安装包 根据https://github.com/tesseract ocr/tesseract/wiki,我找到非官方的安装包,好像我只看到64位的安装包http://digi.bib.uni mannheim.de/tesseract/tesseract ocr setup 4.00.0 ...
分类:
其他好文 时间:
2020-02-20 17:25:43
阅读次数:
111
1.更新树莓派系统 $ sudo apt-get update $ sudo apt-get upgrade -y 2.安装python依赖环境 $ sudo apt-get install build-essential libsqlite3-dev sqlite3 bzip2 libbz2-de ...
分类:
编程语言 时间:
2020-02-20 13:29:54
阅读次数:
327
如果最外层是一个{}的话,需要再增加一对圆括号, 不加圆括号会报:错误Uncaught SyntaxError: Unexpected token : 其它类似: 在函数中返回箭头函数对象时,也要加一个()比如 export default connect(()=>({"age":111}))(De ...
分类:
Web程序 时间:
2020-02-19 19:12:31
阅读次数:
97
链接:https://leetcode-cn.com/problems/ji-qi-ren-de-yun-dong-fan-wei-lcof/ 思路: dfs 代码: class Solution { public: int get_single_sum(int x) { int s= 0; whi ...
分类:
其他好文 时间:
2020-02-19 16:51:16
阅读次数:
68