Some basic algorithms in various languages.
This commit is contained in:
parent
7042509db7
commit
adb9a6e44c
2 changed files with 119 additions and 0 deletions
19
current/algorithms/Numbers.java
Normal file
19
current/algorithms/Numbers.java
Normal file
|
@ -0,0 +1,19 @@
|
|||
import java.util.*;
|
||||
|
||||
class BTree<T> {
|
||||
public int level = 4;
|
||||
public List<T> values;
|
||||
public List<BTree> children = new ArrayList<>();
|
||||
}
|
||||
|
||||
public class Numbers {
|
||||
|
||||
public static <T> void bipart(List<BTree> elements, int t1, int t2, T value) {
|
||||
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello World");
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue