上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: 理论上讲,从网站上下载的这种视频格式的文件都是一个“.m3u8”为后缀的目录文件加上一个文件夹。文件夹里面放置的就是实际的视频文件了。如果没有加密的话,你是可以直接把它用视频播放器打开的。如果不能打开的话,那说明文件已经被加密了,本篇日记则不适合。 理论上讲,里面的视频文件都是名称递增的,比如abc 阅读全文
posted @ 2020-03-11 15:19 念秋 阅读(10787) 评论(0) 推荐(0) 编辑
摘要: 1 //c++给定字符分割 2 #include<iostream> 3 #include<vector> 4 #include<string.h> 5 using namespace std; 6 int main() 7 { 8 /* 最终把要分割的字符串根据给定分隔符划分为多个短的字符串*/ 阅读全文
posted @ 2020-01-12 10:37 念秋 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1 //char数组和string的转换 2 #include<iostream> 3 #include<string.h> 4 using namespace std; 5 int main() 6 { 7 char ch[]="hello world"; 8 // string s=ch;/* 阅读全文
posted @ 2020-01-12 09:58 念秋 阅读(5714) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 using namespace std; 3 int n; 4 void print(int *a) 5 { 6 for(int i=0;i<n;i++) 7 { 8 cout<<a[i]<<" "; 9 } 10 cout<<endl; 11 } 12 阅读全文
posted @ 2019-12-19 10:02 念秋 阅读(530) 评论(0) 推荐(0) 编辑
摘要: map左边只有结构体指针时,地址分配由创建顺序由大到小,map左边排序按照指针地址数值大小由大到小进行排序,不同于平时的由小到大。 1 #include<iostream> 2 #include<map> 3 using namespace std; 4 typedef struct tree* T 阅读全文
posted @ 2019-12-17 15:28 念秋 阅读(386) 评论(0) 推荐(0) 编辑
摘要: /* auto赋值只是暂时有效,iterator赋值才是真实有效地*/ /* 不只是vector,所有能用迭代器的容器应该都具有这个特点*/ 1 #include<iostream> 2 #include<vector> 3 using namespace std; 4 int main() 5 { 阅读全文
posted @ 2019-12-14 10:23 念秋 阅读(1127) 评论(2) 推荐(1) 编辑
摘要: 纸上得来终觉浅,绝知此事要躬行。 1 #include<iostream> 2 #include<string.h> 3 #include<algorithm> 4 using namespace std; 5 int main() 6 { 7 int a[5]; 8 memset(a,257,20 阅读全文
posted @ 2019-11-28 13:16 念秋 阅读(6875) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 using namespace std; 3 struct tree{ 4 int num; 5 string s; 6 bool operator<(const tree &a)const 7 { 8 return a.num<num; 9 } 10 阅读全文
posted @ 2019-11-27 08:28 念秋 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<queue> 3 using namespace std; 4 struct tree{ 5 int num; 6 string s; 7 tree(int x,string zfc) 8 { 9 num=x; 10 s=zfc; 11 阅读全文
posted @ 2019-11-27 00:03 念秋 阅读(1107) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<algorithm> 3 using namespace std; 4 struct tree{ 5 string zfc; 6 int a; 7 /*bool operator<(const tree &a) 8 { 9 if(zfc 阅读全文
posted @ 2019-11-26 23:02 念秋 阅读(786) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页