2018年7月28日

Nordic Collegiate Programming Contest 2015​ E. Entertainment Box

摘要: Ada, Bertrand and Charles often argue over which TV shows to watch, and to avoid some of their fights they have finally decided to buy a video tape re 阅读全文

posted @ 2018-07-28 17:51 cltt 阅读(176) 评论(0) 推荐(0) 编辑

子串!=子序列

摘要: 1 例如:一个字符串 awbcdewgh 2 3 他的子串: awbc、awbcd、awbcde ...很多个子串 ,但是都是连续在一起 。//substring 4 5 他的子序列:(subsequence ) abc 、abcd、 abcde ... 很多个子序列 ,但是子序列中的字符在字符串中不一定是连在一起的,而是删除其中若干个, 但是子序列一定是单调的(即字符之间ASC... 阅读全文

posted @ 2018-07-28 11:54 cltt 阅读(217) 评论(0) 推荐(0) 编辑

memcpy

摘要: 1 #include 2 3 int main(void) 4 { 5 int a[5] = {1, 2, 3, 4, 5}, b[5]; 6 /*第一个参数是要保存的位置的起始地址,所以我们直接放b 7 *第二个参数是源数据的起始地址,所以我们把a放上去 8 *第三个参数是要复制的内存块的长度,为a的长度sizeof(a)*/ 9 ... 阅读全文

posted @ 2018-07-28 11:50 cltt 阅读(176) 评论(0) 推荐(0) 编辑

导航