淡定从容,宁静致远
全部博文(329)
发布时间:2014-09-09 21:26:14
int func(int m, int n){ int t,i = n, j = m; while ((m%n)!=0) { t = n; &.........【阅读全文】
发布时间:2014-09-09 09:53:04
#include <stdio.h>#include <stdlib.h>typedef struct node{int data;struct node *next;}StackNode;//置空栈StackNode* Init_LinkStack(StackNode *top){top=NULL;return top;}//判空栈int Empty_LinkStack(StackNode*top){if(top==NULL){return 1;}else{return 0;}}//入栈StackNode* Pu.........【阅读全文】
发布时间:2014-09-09 09:50:30
#include <stdio.h>#include <stdlib.h>typedef int DLL_DataType;typedef struct Node{DLL_DataType data;struct Node *pre,*next;}DLL_Node;typedef struct{DLL_Node *head,*tail;}DList;DLL_Node* DLL_makeNode(DLL_DataType value){DLL_Node*new_ptr=malloc(sizeof(DLL_Node));new_ptr->data=value.........【阅读全文】
发布时间:2014-09-09 09:38:21
#include <time.h>#include <sys/types.h>#include <sys/socket.h>#include <netinet/in.h>#include <netinet/ip.h>#include <stdio.h>#define BUFSIZE 128int main(void){ int sd; struct sockaddr_in my_end, his_end; socklen_t his_len; .........【阅读全文】
发布时间:2014-09-08 11:24:05
long,指针在64位和32位下分别占多少字节 32位 64位 long 4 8 指针 4 8......【阅读全文】