摘要: public static int lagelangri( int [] sz,int num )//拉格朗日排序法. { int tou =0; int wei=sz.Length-1; int zhong =0; while (tou <=wei) { zhong = tou + (wei - 阅读全文
posted @ 2018-11-05 10:48 小木槌 阅读(207) 评论(1) 推荐(1) 编辑
摘要: public void nizhi()//链表的逆置 { Node T1,T2=head;//head是定义的头结点. T2=head.Next; head.Next=null; while(T2!=null) { T1=T2.Next; T2.Next=head.Next; head.Next=T 阅读全文
posted @ 2018-11-05 10:21 小木槌 阅读(263) 评论(0) 推荐(0) 编辑