【发布时间】:2014-07-04 06:28:49
【问题描述】:
这里真的很新,很抱歉有任何进一步的错误.. 我有一些新的学校项目(学习 C),我必须连接到服务器 使用套接字而不是从服务器下载所有代码行。 之后,我需要对这些行进行排序,以便它们按顺序排列,我得到的位置在排序中。我已经下载了将它们保存在结构数组中的代码行,但现在我的冒泡排序向我显示了一些错误,我没有知道是什么问题..谢谢任何帮助。
typedef struct DATA{
char* buf;
}DATA;
// this fucntion creates a socket.
void sort_array(DATA *to_sort, int len){
int i, j;
char tmp[1024] = "";
for (i = 0; i < len - 1; i++){
for (j = 0; j < len - i - 1; j++){
if (strcmp(to_sort[j].buf, to_sort[j + 1].buf) < 0){
strcpy(tmp, to_sort[j + 1].buf);
strcpy(to_sort[j + 1].buf, to_sort[j].buf);
strcpy(to_sort[j].buf, tmp);
}
}
}
}
int main(){
WSADATA info;
int error, s,j;
int sendError, recvError;
char buffer[1024] = "100",readbuf[1024] = "";
char recvbuf[1024] = "";
int numberLines, i, temp, convert;
char converted_num[1024] = "";
char *sub;
struct sockaddr_in ClientService;
FILE *fp = fopen("stored_data.txt", "w");
FILE *ofp = fopen("final_result.txt", "w");
DATA *to_sort = NULL;
error = WSAStartup(MAKEWORD(2, 0), &info);
//check if error occurred while configuring.
if (error != 0){
printf("WSAstartup failed with error: %d\n", error);
exit(1);
}
s = socket_creation(fp);
// configuration of the socket.
ClientService.sin_family = AF_INET;
ClientService.sin_addr.s_addr = inet_addr("54.209.143.42");
ClientService.sin_port = htons(6714);
connection(s, ClientService, fp); // function connecting to the server.
error = WSAStartup(MAKEWORD(2, 0), &info);
// send '100' login command to server.
strcpy(buffer, "100");
sendError = send_to_serv(buffer, s);
// receiving respond from the server.
recvError = recv_from_serv(s, &numberLines, fp,buffer);
// send '400' get number lines command to server.
strcpy(buffer, "400");
sendError = send_to_serv(buffer, s);
// receiving respond from the server.
recvError = recv_from_serv(s, &numberLines, fp,buffer);
printf("\nNumber of Lines are: %d\n", numberLines);
temp = numberLines; // number of all lines received.
/* allocate mmoery for struct array to store the data from server */
to_sort = (DATA*)malloc(sizeof(DATA)* temp);
// getting the lines from the server.
for (i = 0; i < temp; i++){
j = 0;
convert = 5000001 + i; // creating number of line wanted.
_itoa(convert, converted_num, 10); // converting the int to a string (wanted line).
sendError = send_to_serv(converted_num, s); // sending the server request of line wanted.
recv_from_serv(s, &numberLines, fp, buffer); // receive the line wanted.
sub = substring(buffer, 0, 3);
// checks if the server returned '502 OK' or '501 REJECT'
if (strcmp(sub, "502") != 0){
to_sort[j].buf = buffer;
j++;
}
}
sort_array(to_sort, temp); // sorting the struct array.
// printing the final result.
// clean memoery.
free(to_sort);
fclose(fp);
system("PAUSE>nul");
return 0;
}
【问题讨论】:
-
您应该删除所有不相关的(套接字和加载)代码,并制作一个仅包含您遇到问题的代码的程序,即排序。另外,为什么不使用
qsort()? -
哦,首先我很抱歉。不知道..第二个我不太好,我的老师让我不要用 qsort() 这样做
-
你应该告诉我们你遇到了什么错误,并切断所有不相关的代码。
-
好吧,我想我现在切断了所有不相关的代码,我得到的错误来自 sort_array 函数。它是
Unhandled exception at 0x5EEB4282 (msvcr120d.dll) in C Project.exe: 0xC0000005: Access violation reading location 0xCDCDCDCD.@Theolodis @unwind -
to_sort[j].buf = 缓冲区;指向所有指针的相同缓冲区的指针?恕我直言,需要初始化和复制。 2) j++ 仅在条件下。如果 502 则不要停止循环。 3) char 数组的 free(to_sort) 数组。然后释放所有数组,然后释放 to_sort 本身。