240 发简信
IP属地:海南
  • 手撕单例模式

    //饿汉式 public class Singelton{ private static Singelton uniqueInstanc...

  • 手撕快排

    public void QuickSort{ public void sort(int [] nums){ shuff(...

  • Resize,w 360,h 240
    手撕堆排序

    public class HeapSort{ public void sort(int [] nums){ int N =num...

  • 手撕死锁

    public Class DeadLockedDemo{ pubilc static Object resource1 =new O...

  • 栈与队列

    栈 public interface Stack extends Iterable { boolean isEmpty(); int...

  • 并查集

    转自https://www.cnblogs.com/noKing/p/8018609.html 并查集是一种数据结构, 常用于描述集合,经常用于...