摘要:
https://blog.csdn.net/innovate1989/article/details/103221959 阅读全文
摘要:
https://jingyan.baidu.com/article/8065f87f454c97233124989e.html 阅读全文
摘要:
1 下载ffmpeg https://www.jianshu.com/p/87dfbf76751e 2 MP4视频 -> TS格式 注:文件路径尽量使用英文名 ffmpeg -y -i <mp4源文件路径> -vcodec copy -acodec copy -vbsf h264_mp4toanne 阅读全文
摘要:
public class MyStack { private long[] arr; private int top; public MyStack(){ arr = new long[10]; top = -1; } public MyStack(int max){ arr = new long[ 阅读全文
摘要:
public class test { public static void main(String[] args) { long[] arr = {45,34,23,12,1}; sort(arr); for (int i = 0; i < arr.length; i++) { System.ou 阅读全文