首先吐槽下优快云,写完,发表,直接没了,辛苦写的东西就这么不见了……
You are given an integer array nums and you have to return a new counts array. Thecounts array has the property where counts[i] is
the number of smaller elements to the right of nums[i].
Example:
Given nums = [5, 2, 6, 1] To the right of 5 there are 2 smaller elements (2 and 1). To the right of 2 there is only 1 smaller element (1). To the right of 6 there is 1 smaller element (1). To the right of 1 there is 0 smaller element.
Return the array [2, 1, 1, 0].
class BinarySearchTreeNode{
BinarySearchTreeNode leftChildren;
BinarySearchTreeNode rightChildren;
int value;
int num;
public BinarySearchTreeNode(int v){
this.value = v;
num = 1;
}
}
public int insert(int v, BinarySearchTreeNode node){
int re = 0;
while(true){
if(v < node.value){
node.num ++;
if(node.leftChildren == null){
node.leftChildren = new BinarySearchTreeNode(v);
break;
}
node = node.leftChildren;
}
else{
node.num ++;
// v >= node.value,加上左子树以及node本身
re += getNum(node.leftChildren);
if(node.value != v)
re++;
if(node.rightChildren == null){
node.rightChildren = new BinarySearchTreeNode(v);
break;
}
node = node.rightChildren;
}
}
return re;
}
private int getNum(BinarySearchTreeNode node){
if(node == null)
return 0;
else
return node.num;
}
public List<Integer> countSmaller(int[] nums) {
LinkedList<Integer> reList = new LinkedList<Integer>();
if(nums == null || nums.length == 0)
return reList;
reList.addFirst(0);
BinarySearchTreeNode root = new BinarySearchTreeNode(nums[nums.length-1]);
for(int i=nums.length-2; i >= 0; i--){
int el = nums[i];
int re = insert(el,root);
reList.addFirst(re);
}
return reList;
}
本文介绍了一种高效算法,解决计数数组中每个元素右侧更小元素的问题。通过逆序遍历并使用带有计数功能的二叉查找树,实现了时间复杂度远低于简单搜索的方法。
5491

被折叠的 条评论
为什么被折叠?



