144. 二叉树的前序遍历 地址:https://leetcode-cn.com/problems/binary-tree-preorder-traversal/ //给你二叉树的根节点 root ,返回它节点值的 前序 遍历。 // // // // 示例 1: // // //输入:root = ...
分类:
其他好文 时间:
2021-01-05 11:30:49
阅读次数:
0
题目描述 1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right; 7 * TreeNode() : val(0), ...
分类:
其他好文 时间:
2021-01-05 11:28:10
阅读次数:
0
package LeetCode_212 /** * 212. Word Search II * https://leetcode.com/problems/word-search-ii/ * Given an m x n board of characters and a list of stri ...
分类:
其他好文 时间:
2021-01-05 11:21:11
阅读次数:
0
Android逆向分析Hello World,使用 改之理,通过简单学习 smail 和 改之理的基本使用,可以完成逆向实战的Hello World。本次逆向的项目无壳无.SO,分析起来较为容易,适合入门。下面我们来讲述如何实现。 首先我们需要准备一个 Apk文件,此Apk需要是未加壳的。 此Apk ...
分类:
移动开发 时间:
2021-01-05 10:55:36
阅读次数:
0
下载源码 本文以 Zookeeper 3.5.4 为例,源码下载地址:https://github.com/apache/zookeeper/tree/release-3.5.4 源码编译 在命令行使用 ant 编译的时候出现了一些问题,在网上没有找到解决方案,所以使用 idea 进行编译,希望有知 ...
分类:
其他好文 时间:
2021-01-04 11:26:42
阅读次数:
0
文档 是这样的 function useQuery() { return new URLSearchParams(useLocation().search); } 使用 function demo (){ const history = useHistory(); history.get('name ...
分类:
其他好文 时间:
2021-01-04 10:59:19
阅读次数:
0
http://bilibili.com/video/BV184411Q7Ng?from=search&seid=739809869027647463 注解: 人工智能、机器学习、深度学习3个名次的出现顺序是:人工智能-->机器学习-->深度学习 下面是一些深度学习框架: 注解: 用的最多的是tens ...
分类:
其他好文 时间:
2021-01-04 10:55:11
阅读次数:
0
http://blog.sina.com.cn/s/blog_6fbe21070101c2w5.html plutil -convert xml1 some_file.plist 将som_file.plist转换为xml文本plutil -convert binary1 some_other_fi ...
分类:
其他好文 时间:
2021-01-04 10:44:10
阅读次数:
0
背景 本文旨在记录解决问题的办法及思路。 需求是识别视频中的话语转为文字,此服务是调用的百度的websocket服务,其要求是: 发送一个text类型的帧,用于登录。 后续发送binary类型的音频数据。 开发语言:Golang websocket库:github.com/gorilla/webso ...
分类:
Web程序 时间:
2021-01-01 12:59:25
阅读次数:
0
JQuery Datatables 实现对某一列的数据合计汇总 有两种实现方式,举例说明 第一种、JS代码如下: HTML代码如下: 第二种方式: HTML代码如下: ...
分类:
Web程序 时间:
2021-01-01 12:24:11
阅读次数:
0