============
- Common algorithm
- data structure
- leetcode problems
Yalgorithm/
├── data-structure/
│ └── btree/
│ ├── BTNode
│ ├── BTree
│ ├── AbstractBTree
│ ├── IterBTree
│ └── RecBTree
├── geeks4geeks/
│ └── findMaxProduct
├── sort/
│ ├── CountingSort (非比较排序)
│ ├── BucketSort (非比较排序)
│ ├── RadixSort (非比较排序)
│ ├── MergeSort (比较排序)
│ ├── Qsort (比较排序)
│ ├── HeapSort (比较排序)
│ ├── BubbleSort (比较排序)
│ └── SelectSort (比较排序)
└── backtracking/
├── DiceRollGame
├── Key2String
├── Permutation
└── DPSubSetSum
- Code quality is checked by maven plugins: checkstyle, findbugs.
- JavaDoc is generated by maven plugin:javadoc.