一:FFMPEG 支持的硬解方式有很多: DXVA2、D3D11VA、CUDA、QSV、OPENCL、DRM、VAAPI、VDPAU、VIDEOTOOLBOX、MEDIACODEC。 有的支持 Windows 平台,有的支持 linux 平台,有的支持 apple ios 平台,…
Problem: 215. 数组中的第K个最大元素 文章目录 思路复杂度Code 思路
👨🏫 参考
复杂度
时间复杂度: O ( n ) O(n) O(n)
空间复杂度: O ( log n ) O(\log{n}) O(logn)
Code
class Solution {public int findKthLargest(int[] nums, int k…