由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
CS版 - 有大牛可以帮助我一下这个ML的程序吗?
相关主题
How to understand the "true" and "false"an algorithm question
在线等答案,写信大家看看我这个C++ STL Functor那里写错了
如何clean up C语言中的#if condition statement? (转载)C++牛人能不能现身解答小妹一个问题啊?标题要长长长长长~~~~~~~~~~~~~~~~~~
标识符真的不能带空格么?有对C和C++精通的同学吗,有个小程序要写,100个包子重谢
问个概率问题Re: OSU CS 的。 (转载)
请问有大牛投过ACM Transaction on Internet Technology 吗请问怎样打开一个有密码的Access数据库
有大牛给computer networks (elsevier)审过稿子的吗?How to remove write-protection in CD
有大牛投过IEEE Transaction on Service Computing 吗?ask a fortran question
相关话题的讨论汇总
话题: increasing话题: false话题: true话题: list话题: ml
进入CS版参与讨论
1 (共1页)
k***t
发帖数: 769
1
Write a function increasing: int list -> bool that returns true if its
input is a list of integers in increasing order.
刚开始学习编程,这个不会。求助!
l***i
发帖数: 6
2
fun increasing [] = true |
increasing (h::t) = if h<= hd(t) then increasing(t)
else false;
不知对不对?
k***t
发帖数: 769
3
Write a function increasing: int list -> bool that returns true if its
input is a list of integers in increasing order.
刚开始学习编程,这个不会。求助!
l***i
发帖数: 6
4
fun increasing [] = true |
increasing (h::t) = if h<= hd(t) then increasing(t)
else false;
不知对不对?
s****e
发帖数: 1
5
fun increasing lst =
case lst of
[] => false
| x::y::[] => (x | x::xs => case increasing(xs) of
true => x | false => false
我只测了最简单的一组升序
1 (共1页)
进入CS版参与讨论
相关主题
ask a fortran question问个概率问题
NP请问有大牛投过ACM Transaction on Internet Technology 吗
[合集] phd找工业界的工作编程重要吗?有大牛给computer networks (elsevier)审过稿子的吗?
Biology at Famous U VS Computer at so so U有大牛投过IEEE Transaction on Service Computing 吗?
How to understand the "true" and "false"an algorithm question
在线等答案,写信大家看看我这个C++ STL Functor那里写错了
如何clean up C语言中的#if condition statement? (转载)C++牛人能不能现身解答小妹一个问题啊?标题要长长长长长~~~~~~~~~~~~~~~~~~
标识符真的不能带空格么?有对C和C++精通的同学吗,有个小程序要写,100个包子重谢
相关话题的讨论汇总
话题: increasing话题: false话题: true话题: list话题: ml