上一页 1 ··· 4 5 6 7 8
摘要: 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) 编辑
上一页 1 ··· 4 5 6 7 8