环形数组 js
2021/8/26 6:06:21
本文主要是介绍环形数组 js,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
export default class AnnularArray { #arr = null #len = 0 #offset = 0 #final = 0 constructor(len) { this.#arr = new Array(len) this.#len = len } get size() { return (this.#final + this.#len - this.#offset) % this.#len } push(val) { if ((this.#final + this.#len + 1) % this.#len === this.#offset) throw new Error('存入失败, 内存溢出了~') this.#arr[this.#final] = val this.#final = (this.#final + 1) % this.#len } fetch() { if (this.#final === this.#offset) throw new Error('取出失败, 没有数据了~') const num = this.#arr[this.#offset] this.#offset = (this.#offset + 1) % this.#len return num } each(callBack) { for (let i = this.#offset; i < this.#offset + this.size; i++) { const item = this.#arr[i % this.#len] callBack ? callBack(item) : console.log(item) } } }
这篇关于环形数组 js的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15useCallback教程:React Hook入门与实践
- 2024-11-15React中使用useContext开发:初学者指南
- 2024-11-15拖拽排序js案例详解:新手入门教程
- 2024-11-15React中的自定义Hooks案例详解
- 2024-11-14受控组件项目实战:从零开始打造你的第一个React项目
- 2024-11-14React中useEffect开发入门教程
- 2024-11-14React中的useMemo教程:从入门到实践
- 2024-11-14useReducer开发入门教程:轻松掌握React中的useReducer
- 2024-11-14useRef开发入门教程:轻松掌握React中的useRef用法
- 2024-11-14useState开发:React中的状态管理入门教程