码迷,mamicode.com
首页 >  
搜索关键字:search    ( 12380个结果
538. Convert BST to Greater Tree
Given a Binary Search Tree (BST), convert it to a Greater Tree such that every key of the original BST is changed to the original key plus sum of all ...
分类:其他好文   时间:2020-08-19 19:48:05    阅读次数:63
1038. Binary Search Tree to Greater Sum Tree
Given the root of a binary search tree with distinct values, modify it so that every node has a new value equal to the sum of the values of the origin ...
分类:其他好文   时间:2020-08-19 19:47:45    阅读次数:64
正则表达式在NLP中应用
正则表达式是一种定义了搜索模式的特征序列 ,用于字符串的模式匹配。 它的作用有两个: (1) 将文档内容从非结构化转为结构化 , 以便文本挖掘 (2) 去除“噪声”(即 文本片段中,与文本无关的文字信息和最终输出) 1. 匹配字符串 re.search(regex,string ) 检查string ...
分类:其他好文   时间:2020-08-18 15:38:17    阅读次数:57
前端入门教程---从0开始手把手教你学习PC端和移动端页面开发第10章有路网PC端主页实战整合
本教程案例在线演示有路网PC端有路网移动端免费配套视频教程免费配套视频教程教程配套源码资源教程配套源码资源制作有路网首页有路网首页布局框架制作划分区域,确定div测量各个区域的宽高使用Flexbox对网页进行布局youlu-whole.css.nav{height:30px;background-color:#f4f4f4;}.search-bar{height:134px;background-
分类:移动开发   时间:2020-08-13 22:22:30    阅读次数:105
demo_21 使用vuex管理历史记录
效果图: 1. 添加无搜索历史内容及样式 2. input传值给home-search 2.1 navbar 传值 2.2 home-search 接收 3. vuex的使用 3.1 创建目录 store,引入vuex实例 3.2 main.js中注册 3.3 页面调用 historyLists 3 ...
分类:其他好文   时间:2020-08-13 12:28:45    阅读次数:58
704. Binary Search
问题: 二分查找,给定一个已排序的数组,和一个目标值target 在该数组中找到target的index返回,若没找到,则返回-1。 Example 1: Input: nums = [-1,0,3,5,9,12], target = 9 Output: 4 Explanation: 9 exist ...
分类:其他好文   时间:2020-08-12 15:53:00    阅读次数:60
使用docker安装nginx
一、获取nginx镜像 1.使用docker search nginx命令获取nginx镜像列表 2.使用docker pull nginx命令拉取nginx镜像到本地,此处我们获取排名第一的是官方最新镜像,其它版本可以去DockerHub查询 3.使用docker images nginx命令,查 ...
分类:其他好文   时间:2020-08-10 15:41:16    阅读次数:67
LeetCode 99. 恢复二叉搜索树 | Python
99. 恢复二叉搜索树 题目来源:力扣(LeetCode)https://leetcode-cn.com/problems/recover-binary-search-tree 题目 二叉搜索树中的两个节点被错误地交换。 请在不改变其结构的情况下,恢复这棵树。 示例 1: 输入: [1,3,null ...
分类:编程语言   时间:2020-08-08 21:20:59    阅读次数:83
Docker系列之MySQL安装教程
Docker系列之MySQL安装教程 有了前面的基础教程Docker系列之常用命令操作手册之后,本博客记录一篇mysql的安装教程 mysql镜像查询命令 docker search mysql 几个关键参数解释一下: INDEX docker.io就是docker官网 NAME 镜像的名称 DES ...
分类:数据库   时间:2020-08-07 00:30:28    阅读次数:109
PostgreSQL中的索引(五) --GiST
在前几篇文章中,我们讨论了PostgreSQL索引引擎、访问方法的接口以及两种访问方法:hash索引和B-tree。在本文中,我们将描述GiST索引。 GiST GiST是广义搜索树«generalized search tree»的缩写。这是一个平衡搜索树,就像前面讨论的«b-tree»。 有什么 ...
分类:数据库   时间:2020-08-06 17:02:22    阅读次数:90
12380条   上一页 1 ... 25 26 27 28 29 ... 1238 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!