我正在尝试实现一个简单的快速排序算法(双向链表,循环)。该算法工作得很好,但它太慢了,因为以下操作:
iEl = getListElement(l);
jEl = getListElement(r);
在很长的输入列表上,我必须不断地遍历整个列表,才能找到iEl
and jEl
,这是超慢的。
解决方案是(我认为)将这两个元素作为参数传递给分区函数。问题是,我找不到正确的元素。我试图输出很多可能性,但它们只是不适合。
这是代码:
public void partition(int l, int r, ListElement lEl, ListElement rEl) {
if (r > l) {
ListElement p, iEl, jEl;
int i, j, x;
i = l;
j = r;
// These two lines are very slow with long input-lists
// If I had the two correct parameters lEL and rEl, this would be much faster
iEl = getListElement(l);
jEl = getListElement(r);
// getListElement walks through x-elements (l and r) of the list and then returns the element on that position
// If I had the correct Elements rEl and lEl, I could directly use these Elements, instead of going all the way through the list. Something like this:
// iEl = lEl;
// jEl = rEl;
x = (int) Math.floor((j + i) / 2);
p = getListElement(x);
while (i <= j) {
while (iEl.getKey() < p.getKey() && i < r) {
i++;
iEl = iEl.next;
}
while (jEl.getKey() > p.getKey() && j > l) {
j--;
jEl = jEl.prev;
}
if (i <= j) {
if (iEl != jEl) {
swap(iEl, jEl);
}
++i;
--j;
break;
}
}
if (l < j) {
// Here I need the two correct parameters
partition(l, j, ???, ???);
}
if (i < r) {
// Here I need the two correct parameters
partition(l, j, ???, ???);
}
}
}
函数开头为:partition(0, numOfElements - 1, list.first, list.first.prev);
我已经为这两个参数尝试了几个变体(iEl、iEl.prev、jEl、jEl.next,...),但似乎没有一个适合。
正如我所说,该功能有效,但速度很慢。这甚至可以通过传递这两个参数来加速函数吗?如果是这样,我必须使用哪些参数?