`
xhanxhanxhan
  • 浏览: 207382 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Ruby 1.9 / Ruby 1.8 = ?

    博客分类:
  • RUBY
阅读更多

从MSN上看到这个签名,耐不住性子简单测试下,结果确实挺令人兴奋。

 

下载Ruby 1.9.1 rc1
发布地址 :http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/323668

下载地址:ftp://ftp.ruby-lang.org/pub/ruby/ruby-1.9.1-rc1.tar.bz2
SIZE: 6181532 bytes
MD5: d440c030131903e72a6152149a097af3
SHA256: 35acfb6b8d9dd9159ef308ac763c629092cda2e8c9f41254e72a7b9fa454c27f

 

安装
1.解压
2.进入目录
3.配置 configure ,防止和原有版本冲突,务必添加 "prefix=/custom_path"
4.make && make install
5.编辑 “.bashrc” 文件 : alias ruby9="custom_path/bin/ruby"

 

测试代码(暴力搜索求解soduku):

$count = 0

def valid?(state, x, y)
  # check in col and row
  0.upto(8) do |i|
    return false if i != y and state[x][i] == state[x][y]
    return false if i != x and state[i][y] == state[x][y]
  end

  # check in box
  x_from = (x / 3) * 3
  y_from = (y / 3) * 3
  x_from.upto(x_from + 2) do |xx|
    y_from.upto(y_from + 2) do |yy|
      return false if (xx != x or yy != y) and state[xx][yy] ==
state[x][y]
    end
  end

  true
end



def next_state(state, x, y)
  $count = $count + 1
  y = 0 and x = x + 1 if y == 9
  return true if x == 9

  unless state[x][y].zero?
    return false unless valid?(state, x, y)
    return next_state(state, x, y + 1)
  else
    1.upto(9) do |i|
    state[x][y] = i
      return true if valid?(state, x, y) and next_state(state, x, y + 1)
    end
  end

  state[x][y] = 0
  false
end


start =
[
  [ 0, 0, 0, 4, 0, 5, 0, 0, 1 ],
  [ 0, 7, 0, 0, 0, 0, 0, 3, 0 ],
  [ 0, 0, 4, 0, 0, 0, 9, 0, 0 ],
  [ 0, 0, 3, 5, 0, 4, 1, 0, 0 ],
  [ 0, 0, 7, 0, 0, 0, 4, 0, 0 ],
  [ 0, 0, 8, 9, 0, 1, 0, 0, 0 ],
  [ 0, 0, 9, 0, 0, 0, 6, 0, 0 ],
  [ 0, 8, 0, 0, 0, 0, 0, 2, 0 ],
  [ 4, 0, 0, 2, 0, 0, 0, 0, 0 ]
]

start_time = Time.new

if next_state(start, 0, 0)
  puts "time elapsed: #{Time.new - start_time} sec."
  puts "count: #{$count}"
  start.each do |val|
    puts val.join(" ")
  end
else
  puts "Not solveable!"
end

 

CPP代码:

/* 
 * File:   newmain.cpp
 * Author: xhan
 *
 * Created on 2009年1月3日, 下午3:11
 */

#include <stdlib.h>
#include <cstdio>
#include <iostream>
using namespace std;
/*
 *a  simple soduku calculater
 */
int matrix[9][9]=
{
    { 0, 0, 0, 4, 0, 5, 0, 0, 1 },
    { 0, 7, 0, 0, 0, 0, 0, 3, 0 },
    { 0, 0, 4, 0, 0, 0, 9, 0, 0 },
    { 0, 0, 3, 5, 0, 4, 1, 0, 0 },
    { 0, 0, 7, 0, 0, 0, 4, 0, 0 },
    { 0, 0, 8, 9, 0, 1, 0, 0, 0 },
    { 0, 0, 9, 0, 0, 0, 6, 0, 0 },
    { 0, 8, 0, 0, 0, 0, 0, 2, 0 },
    { 4, 0, 0, 2, 0, 0, 0, 0, 0 }
};
int cnt =0;

int valid(int x, int y)
{
    int posVal = matrix[x][y];
    for(int i=0; i <9 ; ++i)
    {
        //col and row
        if(i != y && posVal == matrix[x][i])
            return 0;
        if(i != x && posVal == matrix[i][y])
            return 0;
    }
    // check in 3*3  area
    int xfrom = (x/3)*3;
    int yfrom = (y/3)*3;
    for(int j=xfrom; j < xfrom+3 ; ++j)
        for(int k=yfrom; k < yfrom+3 ; ++k)
            if( posVal == matrix[j][k] && (j != x || k != y) )
                return 0;

     return true;
 }

// recursion calculate each sequencing value whether is valid
int check(int x,int y)
{
    ++cnt;
    //next row
    if(y==9){
        y=0;
        ++x;
    }
    //get solution
    if( x == 9)
    {
        return true;
    }
    if(matrix[x][y] != 0)
    {
        if( valid(x,y) )
            return check(x,y+1);
        else
            return false;
    }
    else
        for(int rnd=1; rnd <=9 ;++rnd)
        {
            matrix[x][y] = rnd;
            if(valid(x,y))
                if(check(x,y+1))
                    return true;
        }
    matrix[x][y] = 0;
    return false;
}

int main(int argc, char** argv) {

     if(check(0,0))
     {
        for(int j=0; j<9; ++j)
            for(int k=0; k<9; ++k){
                printf(" %d",matrix[j][k]);
                if(k ==8)
                    putchar('\n');
            }
        cout<<"end count:"<<cnt<<endl;
     }
     else
        puts("cannot get the solution!");
    
    return (EXIT_SUCCESS);
}

 最终测试结果(本人机器CPU AMD3000 +1G DDRII):

ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-linux] real    14.155s
ruby 1.9.1 (2008-12-30 patchlevel-0 revision 21203) [i686-linux] real    4.390s
G++ real    0m0.119s

 

有此可见,ruby新版性能有了极大的飞跃,不过还是有很大的改进空间。

分享到:
评论
3 楼 robbin 2009-01-04  
ruby1.9 的综合测试性能一般是ruby 1.8的3-5倍左右,所以性能提升的确是巨大的。现在就看Rails能提升多少了。
2 楼 xhanxhanxhan 2009-01-03  
hanwei59 写道

引用
ruby1.8.7  4.390s
ruby1.9.1  14.155s
是不是颠倒了?

阿哦,确实颠倒了~~
1 楼 hanwei59 2009-01-03  
<div class='quote_title'>引用</div>
<div class='quote_div'>
<table border='0'>
<tbody>
<tr>
<td>ruby1.8.7</td>
<td>4.390s</td>
</tr>
<tr>
<td>ruby1.9.1</td>
<td>14.155s</td>
</tr>
</tbody>
</table>
<br/></div>
<p>
<br/>是不是颠倒了?</p>
<p> </p>

相关推荐

    Ruby编程语言_涵盖Ruby 1.8和1.9

    Ruby 1.8和1.9是Ruby语言的两个重要版本,它们在许多方面有所不同,同时也对Ruby的发展产生了深远的影响。 Ruby 1.8是Ruby的一个早期版本,发布于2004年,它引入了许多特性,如块语法的改进、元编程能力的增强以及...

    为何Ruby 1.9的不兼容性会导致原有Ruby代码无法工作

    Ruby 1.9 的发布对Ruby社区带来了显著的变化,尤其是其与之前的1.8版本之间的不兼容性。这种不兼容性源于对Ruby语言及其核心库的深入修改,目的是提升语言性能和规范。Ruby 1.9.0的推出并非完全稳定,Matz,即Ruby的...

    ruby-1.9.3-rpm:Ruby 1.9.3的RPM规范

    此规范是为了在基于RHEL的系统上推动以1.9.3+稳定地替换Ruby1.8.x。 我基于Ruby 1.9.3和Ruby Enterprise Edition的规范进行工作。如何安装RHEL / CentOS 5/6 yum install -y rpm-build rpmdevtools readline-devel ...

    Ruby程序设计语言 (涵盖Ruby 1.8和1.9)源代码

    《Ruby程序设计语言》是Ruby的权威指南,全面涵盖该语言的1.8版和1.9版。本书详尽但并不拘泥于语言规范,既适合首次接触Ruby的资深程序员,同样也适合那些想要挑战对这门语言的理解并更深入掌握它的Ruby程序员。本书...

    cover_me:Ruby 1.9的RCov式覆盖工具

    它比Ruby 1.8。×更快,更强大,更干净,并且具有巨大的改进。 由于这些原因,每个Ruby开发人员都应该转向我们的语言的这一激动人心的新版本。 当采取这种规模的行动时,拥有正确的工具来帮助我们至关重要。 不幸的...

    ruby教程.rar

    ruby 1.8 特性 1.6.8到1.8.0的变更点(总结) ruby 1.9 特性 obsolete 对应DOSISH 附录 疑似BNF的Ruby语法 Ruby术语集 Ruby的运行平台 pack模板字符串 sprintf格式 Marshal格式 Ruby FAQ Ruby的陷阱 ...

    Reudy19:在Ruby 1.9上运行的Chatbot Lloydy

    在Ruby 1.8上不起作用。 如何使用 当用作IRC机器人时 在公用文件夹中编辑setting.yml之后 Rubyirc_reudy.rb 将启动IRC客户端。 用作Twitter机器人时 需要Ruby和高线才能工作 宝石安装Ruby高线 请安装。 从创建一个...

    rsmaz:Smaz的Ruby端口-短字符串压缩库

    :)要求: MiniTest(在Ruby 1.9 stdlib或Ruby 1.8上的`gem install minitest`中)安装: gem install rsmaz用法: ¶ ↑ require 'rsmaz'r = RSmaz . compress ( "whatever" )puts RSmaz . decompress ( r ) Ruby ...

    ruby-hash-syntax:在Emacs中,在经典样式和1.9样式之间切换ruby哈希语法

    改编自 TextMate 使用的方法,该库提供了一个命令ruby-hash-syntax-toggle ,它尝试在 1.8 和 1.9 哈希样式之间自动转换选定的 ruby​​ 代码区域。 安装 如果您选择不使用方便的包之一,则需要将包含ruby-hash-...

    ruby 1.9.3 p484稳定版本

    1.9版本相对于之前的1.8.x系列是一个重大升级,它对语言的许多方面进行了优化。其中最显著的变化之一是默认编码改为UTF-8,这使得处理多语言文本变得更加方便。此外,1.9版本还引入了新的语法特性,如块的语法更简洁...

    Ruby Under a Microscope An Illustrated Guide to Ruby Internals

    此外,本书涉及了Ruby不同版本(包括Ruby 2.x、1.9和1.8)的内部实现。作者并没有停留在表面的代码编写上,而是深入到了Ruby的不同版本中,揭示了随着语言版本迭代,内部实现上的变化和改进。 书中还提到了Ruby中...

    Ruby编程语言pdf

    本书详细介绍了Ruby 1.8和1.9版本各方面的内容。在对Ruby进行了简要的综述之后,本书详细介绍了以下内容:Ruby的句法和语法结构,数据结构和对象,表达式和操作符,语句和控制结构,方法、proc、lambda和闭包,反射...

    Ruby Under a Microscope 在c语言层面深入挖掘ruby

    书中对Ruby 2.x、1.9和1.8版本都有所覆盖,让读者可以了解到Ruby发展的不同阶段。 另一个值得探讨的部分是Ruby的垃圾回收算法。Ruby的垃圾回收机制是自动内存管理的核心,它负责回收不再使用的对象所占用的内存空间...

    zookeeper:Ruby 的 Zookeeper 绑定(1.8、1.9 与手表和回调兼容)

    动物园管理员 Zookeeper 集群协调服务器的接口。 对于具有更方便的 API 和锁等功能的更高级别的接口,请查看 。 前叉安全! 从 1.1.0 开始,这个库是 fork 安全的(这并不容易实现)。 这意味着您可以在 unicorn...

    ruby-oracle相关的数据库操作的gems包

    6. `ruby-oci8-1.0.7-x86-mswin32-60.gem`:专为Windows上的Ruby 1.9.x编译的版本。 7. `ruby-oci8-2.1.0.tar.gz` 和 `ruby-oci8-2.0.6.tar.gz`:源代码包,可以自行编译安装。 8. `ruby-oci8-1.0.7.tar.gz`:同上,...

    hash_formatter:Hash Formatter 是一个为代码编辑器格式化 Ruby 哈希的库

    单行,Ruby 1.9: {foo: bar, baz: bam} 单行,Ruby 1.8: {:foo =&gt; bar, :baz =&gt; bam} 多行,Ruby 1.8: { :foo =&gt; bar, :baz =&gt; bam, :hash_keys =&gt; 'are aligned' } 这些选择允许我使用我完全主观的、...

    statistics2:Shin-ichiro Hara 的库,针对 Ruby 1.9 更新并打包为 gem

    * ruby-1.8 or higher 安装: $ gem install statistics2 用法: 例子: require "statistics2" puts Statistics2 . normaldist ( 0.27 ) #=&gt; 0.60641987319804 如果您不想使用 C 扩展名: require "statistics...

Global site tag (gtag.js) - Google Analytics