- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我正在阅读有关 Java 的内容,并且遇到了一个示例。我不知道它是如何工作的。下面您将在 ConsLoRunner
类中看到 sortByTime()
方法。我的问题是它如何能够输出一些东西,它不会一遍又一遍地递归该方法,并且永远不会到达 insertByTime(this.first)
方法吗?
旁注:该示例是马拉松运行者,并根据他们的时间对他们进行排序(从最快到最慢)。
class Runner {
String name;
int age;
int bib;
boolean isMale;
int pos;
int time;
Runner(String name, int age, int bib, boolean isMale, int pos, int time) {
this.name = name;
this.age = age;
this.bib = bib;
this.isMale = isMale;
this.pos = pos;
this.time = time;
}
public boolean finishesBefore(Runner r) {
return this.time < r.time;
}
}
interface ILoRunner {
ILoRunner sortByTime();
ILoRunner insertByTime(Runner r);
}
class MtLoRunner implements ILoRunner {
public ILoRunner sortByTime() {
return this;
}
public ILoRunner insertByTime(Runner r) {
return new ConsLoRunner(r, this);
}
}
class ConsLoRunner implements ILoRunner {
Runner first;
ILoRunner rest;
ConsLoRunner(Runner first, ILoRunner rest) {
this.first = first;
this.rest = rest;
}
/*******HOW DOES IT DO THIS?????**********/
public ILoRunner sortByTime() {
return this.rest.sortByTime().insertByTime(this.first);
}
public ILoRunner insertByTime(Runner r) {
if (this.first.finishesBefore(r)) {
return new ConsLoRunner(this.first, this.rest.insertByTime(r));
}
else {
return new ConsLoRunner(r, this);
}
}
}
class ExamplesRunners {
MtLoRunner empty = new MtLoRunner();
Runner tim = new Runner ("Tim", 1, 2, true, 5, 6);
Runner bob = new Runner ("Bob", 5, 6, true, 9, 50);
Runner jim = new Runner ("Jim", 5, 6, true, 10, 40);
ILoRunner list1 = new ConsLoRunner(this.tim, new ConsLoRunner(this.bob, new ConsLoRunner(this.jim, this.empty)));
boolean testSort(Tester t) {
return t.checkExpect(this.list1.sortByTime(), new ConsLoRunner(this.tim, new ConsLoRunner(this.jim, new ConsLoRunner(this.bob, this.empty))));
}
}
最佳答案
I have no idea how it works.
我会尝试回答这个问题。
您正在查看 List Data Structure 的(相当令人困惑的)Java 版本,通常出现在 LISP 等语言中.
在我们的例子中,“列表”可以递归地定义。它是:
()
或 nil
表示,或(first,rest)
如您所见,Java 类与这些概念有清晰的映射:
ILoRunner -> An abstract List, the root type
MtLoRunner -> An empty list: () or nil
ConsLoRunner -> A non-empty list: (first, rest)
线索就在名称 ConsLoRunner
的开头。在 LISP 中,cons
是一个“构造函数”,它创建一个包含另外两个对象的对象。 cons
通常用于创建列表。但它也可用于创建非列表结构。抱歉,我离题了。
将示例重写为列表表示形式,运行者列表 list1
大致如下所示(为简单起见,省略其他字段):
(Tim <-- first: Tim, rest: (Bob ...)
(Bob <-- first: Bob, rest: (Jim ())
(Jim ()))) <-- first: Jim, rest: () // rest of the list is empty, no more elements.
正是 ExamplesRunners
正在做的事情。
现在是令人困惑的部分。该代码按运行者的完成时间对运行者进行排序。这个想法非常简单,要对这样的列表进行排序,我们
这就是ConsLoRunner.sortByTime
正在做的事情。但请注意,它返回一个新的、已排序的列表。 所以原始列表永远不会改变。
将元素 x
插入排序列表也很简单:
x
与列表的第一个元素进行比较x
较小,则在整个列表之前插入 x
x
插入列表的其余部分请记住,插入是通过创建一个新的 cons
对象以及适当的元素顺序来完成的。同样,原始列表被保留。
IMO,如果代码是针对实际列表接口(interface)编写的,而不是与新列表的内部表示和构造混合在一起,那么代码会更容易阅读。
// The list interface
interface List<T extends Comparable<T>> {
boolean isEmpty();
T first();
List<T> rest();
}
// Instances of this class represents an empty list: ()
class Empty<T extends Comparable<T>> implements List<T> {
@Override
public boolean isEmpty() {
return true;
}
@Override
public T first() {
return null;
}
@Override
public List<T> rest() {
return null;
}
@Override
public String toString() {
return "()";
}
}
// A non-empty list, composed of the first element and the rest.
class Cons<T extends Comparable<T>> implements List<T> {
private final T first;
private final List<T> rest;
public Cons(T first, List<T> rest) {
this.first = first;
this.rest = rest;
}
@Override
public boolean isEmpty() {
return false;
}
@Override
public T first() {
return first;
}
@Override
public List<T> rest() {
return rest;
}
@Override
public String toString() {
return "(" + first +", " + rest + ")";
}
}
public class Lisp {
// Creates and returns a sorted list from the given list
// The original list is never changed.
public static <T extends Comparable<T>> List<T> sort(List<T> list) {
if (list.isEmpty()) {
// Empty lists are already sorted.
return list;
} else {
// We first sort the rest of the list
List<T> sortedRest = sort(list.rest());
// Then insert the first element into the sorted list
return insert(list.first(), sortedRest);
}
}
// Creates and returns a sorted list with x inserted into a proper position in the already sorted list
private static <T extends Comparable<T>> List<T> insert(T x, List<T> list) {
if (list.isEmpty() || x.compareTo(list.first()) < 0) {
return new Cons<>(x, list);
} else {
// Recursive call return a sorted list containing x
return new Cons<>(list.first(),
insert(x, list.rest()));
}
}
public static void main(String [] args) {
List<Integer> alist = new Cons<>(7, new Cons<>(1, new Cons<>(4, new Empty<>())));
System.out.println("Sorted: " + sort(alist));
System.out.println("Original: " + alist);
}
}
输出
Sorted: (1, (4, (7, ())))
Original: (7, (1, (4, ())))
关于java - 无法理解Java在方法上调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40334314/
为了让我的代码几乎完全用 Jquery 编写,我想用 Jquery 重写 AJAX 调用。 这是从网页到 Tomcat servlet 的调用。 我目前情况的类似代码: var http = new
我想使用 JNI 从 Java 调用 C 函数。在 C 函数中,我想创建一个 JVM 并调用一些 Java 对象。当我尝试创建 JVM 时,JNI_CreateJavaVM 返回 -1。 所以,我想知
环顾四周,我发现从 HTML 调用 Javascript 函数的最佳方法是将函数本身放在 HTML 中,而不是外部 Javascript 文件。所以我一直在网上四处寻找,找到了一些简短的教程,我可以根
我有这个组件: import {Component} from 'angular2/core'; import {UserServices} from '../services/UserService
我正在尝试用 C 实现一个简单的 OpenSSL 客户端/服务器模型,并且对 BIO_* 调用的使用感到好奇,与原始 SSL_* 调用相比,它允许一些不错的功能。 我对此比较陌生,所以我可能会完全错误
我正在处理有关异步调用的难题: 一个 JQuery 函数在用户点击时执行,然后调用一个 php 文件来检查用户输入是否与数据库中已有的信息重叠。如果是这样,则应提示用户确认是否要继续或取消,如果他单击
我有以下类(class)。 public Task { public static Task getInstance(String taskName) { return new
嘿,我正在构建一个小游戏,我正在通过制作一个数字 vector 来创建关卡,该数字 vector 通过枚举与 1-4 种颜色相关联。问题是循环(在 Simon::loadChallenge 中)我将颜
我有一个java spring boot api(数据接收器),客户端调用它来保存一些数据。一旦我完成了数据的持久化,我想进行另一个 api 调用(应该处理持久化的数据 - 数据聚合器),它应该自行异
首先,这涉及桌面应用程序而不是 ASP .Net 应用程序。 我已经为我的项目添加了一个 Web 引用,并构建了各种数据对象,例如 PayerInfo、Address 和 CreditCard。但问题
我如何告诉 FAKE 编译 .fs文件使用 fsc ? 解释如何传递参数的奖励积分,如 -a和 -target:dll . 编辑:我应该澄清一下,我正在尝试在没有 MSBuild/xbuild/.sl
我使用下划线模板配置了一个简单的主干模型和 View 。两个单独的 API 使用完全相同的配置。 API 1 按预期工作。 要重现该问题,请注释掉 API 1 的 URL,并取消注释 API 2 的
我不确定什么是更好的做法或更现实的做法。我希望从头开始创建目录系统,但不确定最佳方法是什么。 我想我在需要显示信息时使用对象,例如 info.php?id=100。有这样的代码用于显示 Game.cl
from datetime import timedelta class A: def __abs__(self): return -self class B1(A):
我在操作此生命游戏示例代码中的数组时遇到问题。 情况: “生命游戏”是约翰·康威发明的一种细胞自动化技术。它由一个细胞网格组成,这些细胞可以根据数学规则生存/死亡/繁殖。该网格中的活细胞和死细胞通过
如果我像这样调用 read() 来读取文件: unsigned char buf[512]; memset(buf, 0, sizeof(unsigned char) * 512); int fd;
我用 C 编写了一个简单的服务器,并希望调用它的功能与调用其他 C 守护程序的功能相同(例如使用 ./ftpd start 调用它并使用 ./ftpd stop 关闭该实例)。显然我遇到的问题是我不知
在 dos 中,当我粘贴此命令时它会起作用: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" https://google.
在 dos 中,当我粘贴此命令时它会起作用: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" https://google.
我希望能够从 cmd 在我的 Windows 10 计算机上调用 python3。 我已重新安装 Python3.7 以确保选择“添加到路径”选项,但仍无法调用 python3 并使 CMD 启动 P
我是一名优秀的程序员,十分优秀!