TypeScript类型检测不通过,我在写一个选择排序可以传入number,string, 和自定义的Comparable?

发布于 2022-09-12 04:27:04 字数 1478 浏览 20 评论 0

codesandbox链接

interface Comparable<T> {
  compareTo(that: T): number;
  equals(that: T): boolean;
}

function selectionSort<E extends Comparable<E> | number | string>(
  arr: E[]
): E[] {
  if (!arr.length) return arr;
  if (typeof arr[0] === "number" || typeof arr[0] === "string") {
    for (let i = 0; i < arr.length; i++) {
      let minIndex = 0;
      for (let j = i; j < arr.length; j++) {
        if (arr[j] < arr[minIndex]) {
          minIndex = j;
        }
      }

      const temp = arr[i];
      arr[i] = arr[minIndex];
      arr[minIndex] = temp;
    }
  } else {
    arr = arr as Comparable<any>[]
    for (let i = 0; i < arr.length; i++) {
      let minIndex = 0;
      for (let j = i; j < arr.length; j++) {
        if (arr[j].compareTo(arr[minIndex]) < 0) {
          minIndex = j;
        }
      }

      const temp = arr[i];
      arr[i] = arr[minIndex];
      arr[minIndex] = temp;
    }
  }
  return arr;
}

class Student implements Comparable<Student> {
  constructor(private score: number) {}
  compareTo(that: Student): number {
    return this.score - that.score;
  }
  equals(that: Student): boolean {
    return this.score === that.score;
  }
}

selectionSort<Student>([new Student(1)]);
selectionSort<number>([1, 2, 3]);
selectionSort<string>(["1", "2", "3"]);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

西瓜 2022-09-19 04:27:04

把自己绕进去了吧

type Comparable = {
  compareTo(that: Comparable): number;
  equals(that: Comparable): boolean;
};

type SortItem = number | string | Comparable;

function isComparableList(arr: SortItem[]): arr is Comparable[] {
  const type = typeof arr[0];
  return type !== "number" && type !== "string";
}

function selectionSort<T extends SortItem>(arr: T[]): T[] {
  if (isComparableList(arr)) {
    for (let i = 0; i < arr.length; i++) {
      let minIndex = 0;
      for (let j = i; j < arr.length; j++) {
        if (arr[j].compareTo(arr[minIndex]) < 0) {
          minIndex = j;
        }
      }
      const temp = arr[i];
      arr[i] = arr[minIndex];
      arr[minIndex] = temp;
    }
  } else {
    for (let i = 0; i < arr.length; i++) {
      let minIndex = 0;
      for (let j = i; j < arr.length; j++) {
        if (arr[j] < arr[minIndex]) {
          minIndex = j;
        }
      }
      const temp = arr[i];
      arr[i] = arr[minIndex];
      arr[minIndex] = temp;
    }
  }
  return arr;
}

class Student implements Comparable {
  constructor(private score: number) {}
  compareTo(that: Student): number {
    return this.score - that.score;
  }
  equals(that: Student): boolean {
    return this.score === that.score;
  }
}

console.log(selectionSort([new Student(1)]));
console.log(selectionSort([1, 2, 3]));
console.log(selectionSort(["1", "2", "3"]));

而且你这啥排序算法

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文