This website works better with JavaScript
Página Principal
Explorar
Ajuda
Registe-se
Iniciar Sessão
wolves
/
leetcode
mirror de
https://git.wolves.top/wolves/leetcode.git
Vigiar
1
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Wiki
Árvore:
affa209d93
Ramos
Etiquetas
main
leetcode
/
else
/
structs
/
List.h
List.h
108 B
Histórico
Em bruto
1
2
3
4
5
6
7
8
#ifndef List_h
#define List_h
struct ListNode{
int value;
struct ListNode * next;
}
#endif //List_h