摘要:
C中内存分配的问题: 1. #include #include #include #include void GetMemory(char **p) { *p=(char *)malloc(100); } void Test() { char **str; GetMemory(str); strcpy(*str, "hello world")... 阅读全文
摘要:
12.6 SJTU 整体来讲,题目出的没水平。 qualify question: 略 选择题:略 大题: 1. 反转链表 #include using namespace std; struct LNode { char data; LNode * next; }; LNode * initList() { LNode *head=new LNode; ... 阅读全文