rpm -Uvh http://mirror.ghettoforge.org/distributions/gf/gf-release-latest.gf.el7.noarch.rpm rpm --import http://mirror.ghettoforge.org/distributions/g ...
分类:
系统相关 时间:
2020-02-14 00:34:40
阅读次数:
90
1 """ 2 Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. 3 According to the definition of LCA on Wikipedia: ...
分类:
其他好文 时间:
2020-02-13 22:33:56
阅读次数:
67
[TOC] Common Extension Tasks 本节总结了可用于将UI组件添加到Qt Creator的API函数。 | 任务 | 详细 | API | | | | | | 添加菜单或菜单项 | 你可以扩展现有菜单或者创建一个新的菜单 | Core::ActionManager, Core: ...
分类:
其他好文 时间:
2020-02-13 21:21:42
阅读次数:
87
Leetcode 14 要求,编写一个函数来查找字符串组中的最长公共前缀 使用了Java语言编写,主要是利用函数indexOf和substring,从而进行比较和剪切。 ...
分类:
其他好文 时间:
2020-02-13 16:59:21
阅读次数:
59
转自:greenplum 官方的一片文档 https://gpdb.docs.pivotal.io/6-0/admin_guide/external/g-devel-fdw.html pg 是类似的 This chapter outlines how to write a new foreign-d ...
分类:
移动开发 时间:
2020-02-13 09:24:06
阅读次数:
106
1 """ 2 Given two strings text1 and text2, return the length of their longest common subsequence. 3 A subsequence of a string is a new string generate ...
分类:
其他好文 时间:
2020-02-12 00:23:03
阅读次数:
70
视频处理 需求分析 原始视频通常需要经过编码处理,生成m3u8和ts文件方可基于HLS协议播放视频。通常用户上传原始视频,系统自动处理成标准格式,系统对用户上传的视频自动编码、转换,最终生成m3u8文件和ts文件,处理流程如下:1、用户上传视频成功2、系统对上传成功的视频自动开始编码处理3、用户查看 ...
分类:
其他好文 时间:
2020-02-11 00:07:10
阅读次数:
164
1. PyCharm 激活码获取: http://idea.medeming.com/jets/2. mac如何让终端运行python3.7.5而不是python2.7(2019.12.3)https://blog.csdn.net/SneakingFox/article/details/10335 ...
分类:
编程语言 时间:
2020-02-10 22:54:25
阅读次数:
113
这个嘛,我觉得是m[i]=max(m[0~i-1])+1;完了复杂度是O(n^2/2); 书上开了一个辅助数组d[],就很nice,思想是如果m[i]>d[最后一个],辣么直接添加进来, 如果m[i]<d[最后一个],就让它替换掉d[]中第一个比它大的,毕竟比它大的在前面,发展显然没有它好 当然也可 ...
分类:
其他好文 时间:
2020-02-09 20:17:48
阅读次数:
60
Developer Guide 为了编辑和重建Cornerstone,你将需要安装Node.js的。一旦安装了Node.js和npm软件包管理器,就可以使用它们来安装项目的依赖项并运行常见的开发任务。 Common Tasks Installing dependencies npm install ...
分类:
Web程序 时间:
2020-02-09 16:33:36
阅读次数:
112