摘要:
*p++ = val; val = *--p; 章5.5 4.3 阅读全文
摘要:
C语言保证,0永远不是有效的数据地址,因此,返回址0可用来表示发生的异常事件 阅读全文
摘要:
a 阅读全文
摘要:
Status ListInsert_Sq(SqList *L,int i,LElemType_Sq e) { LElemType_Sq *newbase; LElemType_Sq *p,*q; if(i<0 || i>(*L).length+1) return ERROR; // i值不合法 if 阅读全文