📄 glista.h
字号:
/****************************************************************
Fisierul GLISTA.H
*****************************************************************/
typedef char Atom;
enum { ATOM, LISTA};
struct GElement; // declaratie simpla
typedef GElement* GLista; // o lista generalizata este un
// pointer la primul element
struct GElement{
char tag; // eticheta
union { // data poate fi
Atom A; // Atom
GLista L; // sau GLista
} data;
GElement* link; // legatura
};
GLista creareGLista();
// citeste si returneaza o lista generalizata data de la
// intrarea standard, respectind sintaxa specificata.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -