相关代码 |
|
算法 2.9 int compare( SqList A, SqList B ) { // 若 AB,则返回 1 j=0; while ( j if ( A.elem[j] < B.elem[j] ) return(-1); else if ( A.elem[j] > B.elem[j] ) return (1) else j++; if ( A.length == B.length ) return (0); else if ( A.length < B.length ) return(-1); else return(1); } // compare
相关资源 |
|