Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は UVC のモニターでリストを広範囲に使用しています。私たちのプロトコルの仕様により、多くのものが と の FIFO 操作を使用してモデル化さlist.push()れlist.pop0()てpop0()います。
list.push()
list.pop0()
pop0()
e 言語は、FIFO 管理を処理するためのより効率的なソリューションまたはデータ構造を提供しますか?
はい。etl を使用します。たとえば、list.pop0() 関数のパフォーマンスの低さを克服するために、(uint のリストの代わりに) uint の deque を使用して、パフォーマンスを向上させることができます。