摘要: 找出一个字符串中最长重复次数的子字符串,并计算其重复次数。例如:字符串“abc fghi bc kl abcd lkm abcdefg”,并返回“abcd”和2。 由于题目要求寻找至少重复2次的最长的子字符串,重点在于最长的子字符串,而不在于重复的最多次数。因此我们可以从长度最长的字符串入手,计算其 阅读全文
posted @ 2014-09-03 19:33 白菜hxj 阅读(285) 评论(0) 推荐(0) 编辑
摘要: client.c #include"my_sort.h" //my_sort 放在include中,里面包含my_socket.h#define MY_IP "127.0.0.1"#define MY_PORT 6666#define SER_IP "127.0.0.1"#define SER_PO 阅读全文
posted @ 2014-09-03 11:26 白菜hxj 阅读(405) 评论(0) 推荐(0) 编辑
摘要: my_socket.h #ifndef __MY_SOCKET_H__ #define __MY_SOCKET_H__ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <s 阅读全文
posted @ 2014-09-03 10:11 白菜hxj 阅读(848) 评论(0) 推荐(0) 编辑
摘要: my_socket.h #ifndef __MY_SOCKET_H__ #define __MY_SOCKET_H__ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <s 阅读全文
posted @ 2014-09-03 10:05 白菜hxj 阅读(875) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#define N 20 void quicksort(int left,int right,int a[]){ int i,j,temp,t; if(left>right) return; temp=a[left]; i=left; j=right; while( 阅读全文
posted @ 2014-09-03 09:27 白菜hxj 阅读(109) 评论(0) 推荐(0) 编辑