This website works better with JavaScript
Kezdőlap
Felfedezés
Súgó
Regisztráció
Bejelentkezés
wolves
/
leetcode
tükrözi:
https://git.wolves.top/wolves/leetcode.git
Figyelés
1
Kedvenc
0
Másolás
0
Fájlok
Problémák
0
Wiki
Fa:
affa209d93
Branch-ok
Tag-ek
main
leetcode
/
else
/
structs
/
List.h
List.h
108 B
Előzmények
Nyers
1
2
3
4
5
6
7
8
#ifndef List_h
#define List_h
struct ListNode{
int value;
struct ListNode * next;
}
#endif //List_h