判斷兩個鏈表是否相交,若相交,求交點。(假設鏈表不帶環)(C語言)

int IsListCrose(PSListNode pL1, PSListNode pL2) { if ((NULL == pL1) || (NULL == pL2)) { return 0; } else { PSListNode PSList1 = pL1; PSListNode PSList2 = pL
相關文章
相關標籤/搜索