摘要:
双向链表 public class DoubleLinkedList { private Node head; public void add(int data) { if (head==null) { head = new Node(data); } else { head = head.ADD( 阅读全文
摘要:
这两天在做期末作业,对两张表进行增删改查等操作,写一堆重复代码。。。。 然后写了一些泛型方法,来应对不同 using System; using System.Collections.Generic; using System.Data.Entity; using System.Data.Entit 阅读全文