摘要:
【时间复杂度会有些高吧】 1 int CSetCalculatorDlg::GetLengthOfLNode(LNode *PointerOfSet) 2 { 3 int length = 0; 4 while(PointerOfSet->next != NULL) 5 { 6 length++; 7 PointerOfSet = PointerOfSet->next; 8 } 9 return length;10 }11 12 int CSetCalculatorDlg::maxTime(int t)13 {14 ... 阅读全文
posted @ 2011-11-24 22:12
海浪波涛
阅读(544)
评论(0)
推荐(1)
浙公网安备 33010602011771号