/** * Compares priorities of two items. * 比较两个元素的优先级。 * @param {*} a * @param {*} b * @return {number} */ comparePriority(a, b) { // Check if the priorities of `a` and `b` are equal. // 检查元素 `a` 和 `b` 的优先级是否相等。 if (this.priorities.get(a) === this.priorities.get(b)) { // If they are equal, return 0. // 如果它们相等,则返回 0。 return0; } // Compare the priorities using the `get` method of the `priorities` map. // 使用 `priorities` map 的 `get` 方法比较优先级。 // If the priority of `a` is less than the priority of `b`, return -1, // 如果 `a` 的优先级小于 `b` 的优先级,则返回 -1, // otherwise return 1. // 否则返回 1。 returnthis.priorities.get(a) < this.priorities.get(b) ? -1 : 1; }
compareValue(a, b) 方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/** * 比较两个值的大小。 * @param {*} a - 第一个值 * @param {*} b - 第二个值 * @return {number} - 返回比较结果的数值 */ compareValue(a, b) { // 如果 a 和 b 相等,则返回 0 if (a === b) { return0; } // 如果 a 小于 b,则返回 -1,否则返回 1 return a < b ? -1 : 1; }