Remove the minimum number of invalid parentheses in order to make the input string valid. Return all possible results. Note: The input string may cont ...
分类:
其他好文 时间:
2020-07-18 15:29:10
阅读次数:
71
思路染色问题,可以使用dfs,也可以使用bfs代码class Solution { boolean valid = true; int[][] graph; public boolean isBipartite(int[][] graph) { this.graph = graph; int n =... ...
分类:
其他好文 时间:
2020-07-16 21:42:04
阅读次数:
58
日常开发中我们接触到的和事件最接近的应该是消息,这两者也比较容易混淆,难以说清楚它们的界限:什么是事件,而什么是消息? ...
分类:
其他好文 时间:
2020-07-16 11:46:37
阅读次数:
115
前端项目编译报如下错误,这两处其实是一处的报错 查看第二处报错信息中对应的getProByPath函数 可以大概知道是解析prop属性指定的路径时找不到触发的报错,由于prop是用于设置一些规则的属性 所以遇到这种报错就需要看下代码中prop指定的路径是否在rules中存在 我触发报错的原因是因为表 ...
分类:
其他好文 时间:
2020-07-13 21:33:36
阅读次数:
342
ffmpeg architecture(下) 第3章-转码 TLDR;给我看代码和执行。 $ make run_transcoding 我们将跳过一些细节,但是请放心:源代码可在github上找到。 在本章中,我们将创建一个用C编写的极简代码转换器,可以使用FFmpeg / libav库(尤其是li ...
分类:
其他好文 时间:
2020-07-13 09:46:18
阅读次数:
71
ffmpeg architecture(中) 艰苦学习FFmpeg libav 您是否不奇怪有时会发出声音和视觉? 由于FFmpeg作为命令行工具非常有用,可以对媒体文件执行基本任务,因此如何在程序中使用它? FFmpeg 由几个库组成,这些库可以集成到我们自己的程序中。通常,当您安装FFmpeg时 ...
分类:
其他好文 时间:
2020-07-13 09:38:09
阅读次数:
45
ffmpeg architecture(上) 目录 介绍 视频-您看到的是什么! 音频-您在听什么! 编解码器-缩小数据 容器-音频和视频的舒适场所 FFmpeg-命令行 FFmpeg命令行工具101 常见的视频操作 转码 转码 转换中 转换中 红利回合:自适应流 超越 艰苦学习FFmpeg lib ...
分类:
其他好文 时间:
2020-07-13 09:19:43
阅读次数:
71
Difference between Dangling Pointer and Wild Pointer? A dangling pointer is a pointer that used to point to a valid address but now no longer does. Th ...
分类:
其他好文 时间:
2020-07-12 01:03:42
阅读次数:
90
Understanding One-Shot NAS 2018-ICML-Understanding and Simplifying One-Shot Architecture Search Google Brain Gabriel Bender、Quoc Le Citation:183 Intro ...
分类:
其他好文 时间:
2020-07-11 19:23:14
阅读次数:
51
package LeetCode_680 /** * 680. Valid Palindrome II * https://leetcode.com/problems/delete-operation-for-two-strings/description/ * * Given two words ...
分类:
其他好文 时间:
2020-07-10 09:29:42
阅读次数:
68