fifo.h

来自「A C++ library which finds associations w」· C头文件 代码 · 共 21 行

H
21
字号
#include "Trans.h"#ifndef FIFO_Hclass Fifo {private:	Trans ** f;	int size;	int curpos;public:Fifo( int n ) ;Trans * tail( void );void push( Trans * x );};#define FIFO_H#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?