- 博客(5)
- 资源 (2)
- 收藏
- 关注
原创 Linux下利用ffmpeg合并VOB文件
<br />cat VTS_01_1.VOB VTS_01_2.VOB | ffmpeg -y -i - -fflags genpts -vcodec copy -acodec copy ../output.VOB
2010-12-09 14:10:00
3998
原创 Linux下通过shell获取网卡的ip地址和mac地址
tmp=`ifconfig | grep HWaddr`mac=`echo $tmp | awk -F" " '{print $5}'`echo $mac
2010-10-25 10:18:00
18500
原创 冒泡排序法 -- Python实现
def bubble_sort(lists) : exchange = False; length = len(lists); for i in range(length) : j = length - 1; while j >= i : if lists[j] lists[j-1] :
2008-05-13 09:51:00
1706
原创 直接插入排序法 -- Python实现
def insert_sort(lists) : for i in range(len(lists)) : if i == 0 : continue; j = i - 1; if lists[j] >= lists[i] : tmp = lists[i];
2008-05-09 17:22:00
805
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人