This website works better with JavaScript
Etusivu
Tutki
Apua
Rekisteröidy
Kirjaudu sisään
wolves
/
leetcode
peilaus alkaen
https://git.wolves.top/wolves/leetcode.git
Tarkkaile
1
Äänestä
0
Haarauta
0
Tiedostot
Esitykset
0
Wiki
Puu:
5297b42c6e
Haarat
Tunnisteet
main
leetcode
/
else
/
structs
/
List.h
List.h
108 B
Historia
Raaka
1
2
3
4
5
6
7
8
#ifndef List_h
#define List_h
struct ListNode{
int value;
struct ListNode * next;
}
#endif //List_h