当前位置: 首页 > 编程笔记 >

Ruby实现的3种快速排序算法

宋育
2023-03-14
本文向大家介绍Ruby实现的3种快速排序算法,包括了Ruby实现的3种快速排序算法的使用技巧和注意事项,需要的朋友参考一下

刚学Ruby,正巧算法老师鼓励用不熟悉的语言来写算法,我就用Ruby吧~~
话说Ruby可真是超厉害,好多凭直觉的方法都可以用。。。。。无限膜拜中。。。。

期间我遇到了invalid multibyte char (US-ASCII)的错误,解决办法是在开头加一个#encoding:utf-8
这个错误在stackoverflow上有人问到过,某人给出的回答是
Write # encoding: utf-8 on top of that file. That changes the default encoding of all string/regexp literals in that file utf-8.
参考链接:http://stackoverflow.com/questions/3678172/ruby-1-9-invalid-multibyte-char-us-ascii

快速排序的普通版本:



#encoding: utf-8

#author: xu jin, 4100213

#date: Oct 20, 2012

#RandomizedQuickSort

#to sort an array by using QuickSort

#example:

#The original array is:[10, 35, 25, 67, 69, 52, 24, 40, 69, 76, 6, 49]

#The sorted array is: [6, 10, 24, 25, 35, 40, 49, 52, 67, 69, 69, 76]

arrayInt = Array.new index = 0 while (index < 12)   arrayInt[index] = rand(100)  #produce 12 random number   index += 1 end puts "The original array is:" + arrayInt.to_s

def QuickSort(arrayInt, first, last)   if first < last      middle = Partition(arrayInt, first, last)     QuickSort(arrayInt, first, middle - 1)     QuickSort(arrayInt, middle + 1, last)       end  end

def Partition(arrayInt, first, last)    x = arrayInt[last]   i = first - 1   for j in first .. (last - 1)     if arrayInt[j] <= x        i += 1        arrayInt[i], arrayInt[j] = arrayInt[j], arrayInt[i]  #exchange     end   end   arrayInt[i + 1], arrayInt[last] = arrayInt[last], arrayInt[i + 1]   return i + 1 end

QuickSort(arrayInt, 0, arrayInt.length-1) puts "The sorted array is: " + arrayInt.to_s

快速排序的随机化版本:


#encoding: utf-8

#author: xu jin, 4100213

#date: Oct 20, 2012

#RandomizedQuickSort

#to sort an array by using randomized QuickSort

#example: 

#The original array is:[14, 47, 46, 49, 82, 76, 92, 22, 44, 81, 59, 61]

#The sorted array is: [14, 22, 44, 46, 47, 49, 59, 61, 76, 81, 82, 92]

arrayInt = Array.new index = 0 while (index < 12)   arrayInt[index] = rand(100)  #produce 12 random number   index += 1 end puts "The original array is:" + arrayInt.to_s

def RandomizedQuickSort(arrayInt, first, last)   if first < last      middle = RandomizedPartition(arrayInt, first, last)     RandomizedQuickSort(arrayInt, first, middle - 1)     RandomizedQuickSort(arrayInt, middle + 1, last)       end  end

def RandomizedPartition(arrayInt, first, last)   i = rand(last - first + 1) + first   arrayInt[i], arrayInt[last] = arrayInt[last], arrayInt[i]   return Partition(arrayInt, first, last)  end

def Partition(arrayInt, first, last)    x = arrayInt[last]   i = first - 1   for j in first .. (last - 1)     if arrayInt[j] <= x        i += 1        arrayInt[i], arrayInt[j] = arrayInt[j], arrayInt[i]  #exchange     end   end   arrayInt[i + 1], arrayInt[last] = arrayInt[last], arrayInt[i + 1]   return i + 1 end

RandomizedQuickSort(arrayInt, 0, arrayInt.length-1) puts "The sorted array is: " + arrayInt.to_s


快速排序的利用了Ruby的语法糖的随机化版本:



#encoding: utf-8

#author: xu jin, 4100213

#date: Oct 20, 2012

#RandomizedQuickSort

#to sort an array by using randomized QuickSort

#example: 

#The original array is:[14, 47, 46, 49, 82, 76, 92, 22, 44, 81, 59, 61]

#The sorted array is: [14, 22, 44, 46, 47, 49, 59, 61, 76, 81, 82, 92]

arrayInt = Array.new index = 0 while (index < 12)   arrayInt[index] = rand(100)  #produce 12 random number   index += 1 end puts "The original array is:" + arrayInt.to_s

def RandomizedQuickSort(a)   i = rand(a.length)   a[i], a[a.length - 1] = a[a.length - 1], a[i]   (x=a.pop) ? RandomizedQuickSort(a.select{|i| i <= x}) + [x] + RandomizedQuickSort(a.select{|i| i > x}) : []  end

puts "The sorted array is: " + RandomizedQuickSort(arrayInt).to_s

 类似资料:
  • 本文向大家介绍java实现快速排序算法,包括了java实现快速排序算法的使用技巧和注意事项,需要的朋友参考一下 1、算法概念。 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。 2、算法思想。 通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序

  • 本文向大家介绍Python实现快速排序算法及去重的快速排序的简单示例,包括了Python实现快速排序算法及去重的快速排序的简单示例的使用技巧和注意事项,需要的朋友参考一下 快速排序由于排序效率在同为O(N*logN)的几种排序方法中效率较高,因此经常被采用。 该方法的基本思想是: 1.先从数列中取出一个数作为基准数。 2.分区过程,将比这个数大的数全放到它的右边,小于或等于它的数全放到它的左边。

  • 本文向大家介绍Javascript实现快速排序(Quicksort)的算法详解,包括了Javascript实现快速排序(Quicksort)的算法详解的使用技巧和注意事项,需要的朋友参考一下 目前,最常见的排序算法大概有七八种,其中"快速排序"(Quicksort)使用得最广泛,速度也较快。它是图灵奖得主C. A. R. Hoare(1934--)于1960时提出来的。 "快速排序"的思想很简单,

  • 主要内容:快速排序算法的实现提到排序算法,多数人最先想到的就是快速排序算法。快速排序算法是在分治算法基础上设计出来的一种排序算法,和其它排序算法相比,快速排序算法具有效率高、耗费资源少、容易实现等优点。 快速排序算法的实现思路是: 从待排序序列中任选一个元素(假设为 pivot)作为中间元素,将所有比 pivot 小的元素移动到它的左边,所有比 pivot 大的元素移动到它的右边; pivot 左右两边的子序列看作是两个待排

  • 快速排序,这是一个经典的算法,本文给出几种python的写法,供参考。 特别是python能用一句话实现快速排序。 思路说明 快速排序是C.R.A.Hoare于1962年提出的一种划分交换排序。它采用了一种分治的策略,通常称其为分治法(Divide-and-ConquerMethod)。 (1) 分治法的基本思想 分治法的基本思想是:将原问题分解为若干个规模更小但结构与原问题相似的子问题。递归地解

  • 本文向大家介绍Ruby实现的合并排序算法,包括了Ruby实现的合并排序算法的使用技巧和注意事项,需要的朋友参考一下 算法课的作业,利用分治法,合并排序。