java的各种排序算法

欢迎进入Java社区论坛,与200万技术人员互动交流 >>进入

180.58. int temp;

181.59. for(int i=1;i<data.length;i++){

182.60. for(int j=i;(j>0)&&(data[j]<data[j-1]);j–){

183.61. SortUtil.swap(data,j,j-1);

184.62. }

185.63. }

186.64. }

187.65.}

188.66.归并排序:

189.1.package org.rut.util.algorithm.support;

190.2.import org.rut.util.algorithm.SortUtil;

191.3.4.public class MergeSort implements SortUtil.Sort{

192.5. /* (non-Javadoc)

193.6. * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])

194.7. */

195.8. public void sort(int[] data) {

196.9. int[] temp=new int[data.length];

197.10. mergeSort(data,temp,0,data.length-1);

198.11. }

199.12.

200.13. private void mergeSort(int[] data,int[] temp,int l,int r){

201.14. int mid=(l+r)/2;

202.15. if(l==r) return ;

203.16. mergeSort(data,temp,l,mid);

204.17. mergeSort(data,temp,mid+1,r);

205.18. for(int i=l;i<=r;i++){

206.19. temp[i]=data[i];

207.20. }

208.21. int i1=l;

209.22. int i2=mid+1;

210.23. for(int cur=l;cur<=r;cur++){

211.24. if(i1==mid+1)

212.25. data[cur]=temp[i2++];

213.26. else if(i2>r)

214.27. data[cur]=temp[i1++];

215.28. else if(temp[i1]<temp[i2])

216.29. data[cur]=temp[i1++];

217.30. else

218.31. data[cur]=temp[i2++];

219.32. }

220.33. }

221.34.}

222.35.改进后的归并排序:

223.

224.1.package org.rut.util.algorithm.support;

225.2.import org.rut.util.algorithm.SortUtil;

226.3.4.public class ImprovedMergeSort implements SortUtil.Sort {

227.5. private static final int THRESHOLD = 10;

228.6. /*

229.7. * (non-Javadoc)

230.8. *

231.9. * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])

232.10. */

233.11. public void sort(int[] data) {

234.12. int[] temp=new int[data.length];

235.13. mergeSort(data,temp,0,data.length-1);

236.14. }

237.15. private void mergeSort(int[] data, int[] temp, int l, int r) {

238.16. int i, j, k;

239.17. int mid = (l + r) / 2;

240.18. if (l == r)

241.19. return;

242.20. if ((mid – l) >= THRESHOLD)

243.21. mergeSort(data, temp, l, mid);

244.22. else

245.23. insertSort(data, l, mid – l + 1);

246.24. if ((r – mid) > THRESHOLD)

247.25. mergeSort(data, temp, mid + 1, r);

248.26. else

249.27. insertSort(data, mid + 1, r – mid);

250.28. for (i = l; i <= mid; i++) {

251.29. temp[i] = data[i];

252.30. }

253.31. for (j = 1; j <= r – mid; j++) {

254.32. temp[r – j + 1] = data[j + mid];

255.33. }

256.34. int a = temp[l];

257.35. int b = temp[r];

258.36. for (i = l, j = r, k = l; k <= r; k++) {

259.37. if (a < b) {

260.38. data[k] = temp[i++];

261.39. a = temp[i];

262.40. } else {

263.41. data[k] = temp[j–];

264.42. b = temp[j];

265.43. }

266.44. }

267.45. }

268.46. /**

269.47. * @param data

270.48. * @param l

271.49. * @param i

272.50. */

273.51. private void insertSort(int[] data, int start, int len) {

274.52. for(int i=start+1;i<start+len;i++){

275.53. for(int j=i;(j>start) && data[j]<data[j-1];j–){

276.54. SortUtil.swap(data,j,j-1);

277.55. }

278.56. }

279.57. }

280.58.}

281.59.堆排序:

282.1.package org.rut.util.algorithm.support;

283.2.import org.rut.util.algorithm.SortUtil;

284.3.4.public class HeapSort implements SortUtil.Sort{

285.5. /* (non-Javadoc)

286.6. * @see org.rut.util.algorithm.SortUtil.Sort#sort(int[])

287.7. */

288.8. public void sort(int[] data) {

289.9. MaxHeap h=new MaxHeap();

290.10. h.init(data);

291.11. for(int i=0;i<data.length;i++)

292.12. h.remove();

293.13. System.arraycopy(h.queue,1,data,0,data.length);

294.14. }

295.15.16. private static class MaxHeap{

296.17.

297.18.

298.19. void init(int[] data){

299.20. this.queue=new int[data.length+1];

300.21. for(int i=0;i<data.length;i++){

301.22. queue[++size]=data[i];

302.23. fixUp(size);

303.24. }

304.25. }

305.26.

306.27. private int size=0;

307.28. private int[] queue;

308.29.

309.30. public int get() {

310.31. return queue[1];

311.32. }

312.33. public void remove() {

313.34. SortUtil.swap(queue,1,size–);

314.35. fixDown(1);

315.36. }

316.37. //fixdown 38. private void fixDown(int k) {

317.39. int j;

318.40. while ((j = k << 1) <= size) {

319.41. if (j < size && queue[j]<queue[j+1])

320.42. j++;

321.43. if (queue[k]>queue[j]) //不用交换 44. break;

322.45. SortUtil.swap(queue,j,k);

323.46. k = j;

324.47. }

325.48. }

326.49. private void fixUp(int k) {

327.50. while (k > 1) {

328.51. int j = k >> 1;

329.52. if (queue[j]>queue[k])

330.53. break;

331.54. SortUtil.swap(queue,j,k);

332.55. k = j;

333.56. }

334.57. }

335.58. }

336.59.}

337.60.SortUtil:

338.1.package org.rut.util.algorithm;

339.2.import org.rut.util.algorithm.support.BubbleSort;

340.3.import org.rut.util.algorithm.support.HeapSort;

341.4.import org.rut.util.algorithm.support.ImprovedMergeSort;

342.5.import org.rut.util.algorithm.support.ImprovedQuickSort;

343.6.import org.rut.util.algorithm.support.InsertSort;

344.7.import org.rut.util.algorithm.support.MergeSort;

345.8.import org.rut.util.algorithm.support.QuickSort;

346.9.import org.rut.util.algorithm.support.SelectionSort;

347.10.import org.rut.util.algorithm.support.ShellSort;

348.11.12.public class SortUtil {

349.13. public final static int INSERT = 1;

350.14. public final static int BUBBLE = 2;

351.15. public final static int SELECTION = 3;

352.16. public final static int SHELL = 4;

353.17. public final static int QUICK = 5;

354.18. public final static int IMPROVED_QUICK = 6;

355.19. public final static int MERGE = 7;

356.20. public final static int IMPROVED_MERGE = 8;

357.21. public final static int HEAP = 9;

358.22. public static void sort(int[] data) {

359.23. sort(data, IMPROVED_QUICK);

360.24. }

361.25. private static String[] name={

362.26. “insert”,“bubble”,“selection”,“shell”,“quick”,“improved_quick”,“merge”,“improved_merge”,“heap”

363.27. };

364.28.

365.29. private static Sort[] impl=new Sort[]{

366.30. new InsertSort(),

367.31. new BubbleSort(),

368.32. new SelectionSort(),

369.33. new ShellSort(),

370.34. new QuickSort(),

371.35. new ImprovedQuickSort(),

372.36. new MergeSort(),

373.37. new ImprovedMergeSort(),

374.38. new HeapSort()

375.39. };

376.40. public static String toString(int algorithm){

377.41. return name[algorithm-1];

378.42. }

379.43.

380.44. public static void sort(int[] data, int algorithm) {

381.45. impl[algorithm-1].sort(data);

382.46. }

383.47. public static interface Sort {

384.48. public void sort(int[] data);

385.49. }

386.50. public static void swap(int[] data, int i, int j) {

387.51. int temp = data[i];

388.52. data[i] = data[j];

389.53. data[j] = temp;

390.54. }

391.55.}

[1][2]

没有什么可留恋,只有抑制不住的梦想,没有什么可凭仗,

java的各种排序算法

相关文章:

你感兴趣的文章:

标签云: