码迷,mamicode.com
首页 >  
搜索关键字:same tree    ( 20551个结果
背诵概念
0、万恶之源版本号 tensorflow,pytorch,显卡版本,conda版本 1、什么是GBDT? 2、xgboost在GBDT上做了哪些优化? 3、随机森林核心思想有几个,分别是什么? 1、gradient boosting decision tree 一种基于boosting增强策略的加法 ...
分类:其他好文   时间:2020-07-29 10:18:11    阅读次数:78
第二十四章 Find命令详细介绍
一、Find 概述 可以根据文件的名称、文件大小、文件的修改时间、文件的类型、文件的权限、文件的属主属组、文件的目录层级进行查找 Find的语法: find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [pat ...
分类:其他好文   时间:2020-07-28 17:17:41    阅读次数:98
leetcode-236-二叉树公共祖先
思路: 公共祖先需要分为三种情况: 1.pq包含在root的左右子树中,则root就是他们公共祖先 2.pq包含在root的右子树中,则公共祖先是右子树 3.pq包含在root的左子树中,则公共祖先在左子树 代码: /** * Definition for a binary tree node. * ...
分类:其他好文   时间:2020-07-28 17:01:57    阅读次数:59
583. Delete Operation for Two Strings
Given two words word1 and word2, find the minimum number of steps required to make word1 and word2 the same, where in each step you can delete one cha ...
分类:其他好文   时间:2020-07-28 14:04:15    阅读次数:77
netty教程
测试代码Github地址:https://github.com/zhouyanger/java_demo/tree/master/netty 四.Netty 4.1 概述 Netty 是由 JBOSS 提供的一个 Java 开源框架。Netty 提供异步的、基于事件驱动的网络 应用程序框架,用以快速 ...
分类:Web程序   时间:2020-07-28 13:59:55    阅读次数:72
自定义rpc
测试代码Github地址:https://github.com/zhouyanger/java_demo/tree/master/netty 五.自定义 RPC 5.1 概述 RPC(Remote Procedure Call),即远程过程调用,它是一种通过网络从远程计算机程序 上请求服务,而不需要 ...
分类:其他好文   时间:2020-07-28 13:58:23    阅读次数:69
xpath解析基础
#!/usr/bin/python from lxml import etree if __name__ == "__main__": #实例化一个etree对象,且将被解析的源码加载到了该对象中 tree = etree.parse('test.html') r = tree.xpath('./h ...
分类:其他好文   时间:2020-07-28 10:13:54    阅读次数:68
leetcode-94-二叉树的中序遍历
思路: 中序:左->根->右 1.需要一个建立一个栈,首先将左子树放入栈中 2.获取栈顶元素并进行节点判断是否有右子树 3. 代码: /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode  ...
分类:其他好文   时间:2020-07-27 23:50:51    阅读次数:62
LeetCode124二叉树中的最大路径和
题目链接 https://leetcode-cn.com/problems/binary-tree-maximum-path-sum/ 题解 递归解法 路径:一条从树中任意节点出发,达到任意节点的序列。该路径至少包含一个节点,且不一定经过根节点。 这道题和LeetCode687最长同值路径和Leet ...
分类:其他好文   时间:2020-07-27 23:35:37    阅读次数:74
[模板]kd-tree
//It is made by jump~ #include <iostream> #include <cstdlib> #include <cstring> #include <cstdio> #include <cmath> #include <algorithm> #include <ctim ...
分类:其他好文   时间:2020-07-27 17:46:04    阅读次数:68
20551条   上一页 1 ... 37 38 39 40 41 ... 2056 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!