LinkedList及常用API ① LinkedList----链表 ② LinkedList类扩展AbstractSequentialList并实现List接口 ③ LinkedList提供了一个链表数据结构 ④ LinkedList有两个构造方法 a) LinkedList() b) LinkedList(Collection c) ⑤ 除了继承的方法之外,LinkedList类还定义了一些有用的方法用于操作和访问容器中的数据; a) void addFir…
经常会有公司叫我们手撕代码,比如网易,阿里,那我们是不是该掌握下呢.下面这段代码来自<现代操作系统>进程与线程P49页. public class ProducerConsumer { public ProducerConsumer() { } private static final int N = 100; static Producer producer = new Producer(); static Consumer consumer = new Consumer(); static…
using System; using System.Collections.Generic; namespace ConsoleApplication { class Program { static void Main(string[] args) { LinkedList<int> a = new LinkedList<int>(); a.AddFirst(); a.AddLast(); a.AddLast(); foreach (int i in a) Console.Wr…