摘要:
来源于严蔚敏的数据结构链表插入: Status ListInsert.Sq(SqList &L, int i, ElemType e) { // 在顺序表L中第i个位置之前插入新的元素e // i 的合法值在 1 <= i <= ListLength.Sq(L) + 1 if (i < 1 || i 阅读全文
摘要:
Before you are a leade, succcss is all about growing yourself, When you become a leader, success is all about growing others. 这句话和“欲救人,必先自救”有异曲同工之妙。顾好 阅读全文
摘要:
采用lambda表达式: import java.util.function.Function; class Test { public static void main(String... args) { Function<Integer, Integer> increase = e -> e + 阅读全文