- 授权协议: 未知
- 开发语言: Perl
- 操作系统: OS X
- 软件首页: https://github.com/goccy/perl-motion
- 官方下载: https://github.com/goccy/perl-motion
软件介绍
PerlMotion 是一个 iOS 和 OS X 下的 Perl 开发的工具链,支持 Perl 5 . 也就是说你可以用 Perl 语言来编写 iOS 和 OS X 下的应用程序。
示例代码:
package Hello::AppDelegate;
use base 'UIApplicationDelegate';
use UIAlertView;
use UIWindow;
use UIScreen;
use Hello::ViewController;
# this method is entrypoint of your application
sub application {
my ($app) = @_;
my $alert = UIAlertView->new->init_with_title('Hello', {
message => 'Hello PerlMotion!!'
});
$alert->add_button_with_title("Button");
my $title = $alert->button_title_at_index(0);
$alert->dismiss_with_clicked_button_index(0, { animated => 1 });
$alert->show();
my $window = UIWindow->new()->init_with_frame(UIScreen->main_screen->bounds);
$window->root_view_controller(Hello::ViewController->new);
$window->root_view_controller->wants_full_screen_layout(1);
$window->make_key_and_visible;
$app->window($window);
}
算法分析导论
(美)Robert Sedgewick、(法)Philippe Flajolet / 冯舜玺、李学武、裴伟东、等其他 / 机械工业出版社 / 2006-4 / 38.00元
本书阐述了用于算法数学分析的主要方法,所涉及的材料来自经典数学课题,包括离散数学、初等实分析、组合数学,以及来自经典的计算机科学课题,包括算法和数据结构,本书内容集中覆盖基础、重要和有趣的算法,前面侧重数学,后面集中讨论算法分析的应用,重点的算法分的的数学方法。每章包含大量习题以及参考文献,使读者可以更深入地理解书中的内容。 本书适合作为高等院校数学、计算机科学以及相关专业的本科生和研究生的......一起来看看 《算法分析导论》 这本书的介绍吧!
