Link List
#include <iostream>
using namespace std;
class Link{
public :
int data;
Link *next;
Link *back;
};
int main(int argc, char** argv) {
Link *a = new Link;
Link *b = new Link;
Link *c = new Link;
a->data = 1;
a->next = b;
b->data = 2;
b->next = c;
c->data = 3;
c->next= NULL;
cout<<a->next->data;
return 0;
}
Subscribe to:
Post Comments (Atom)
R-chord 謝和弦 - I'm Not Your Prince Charming 我不是白馬王子 Lyrics 歌詞 with Pinyin
R-chord 謝和弦 x 高爾宣 & 李傑明 - I'm Not Your Prince Charming 我不是白馬王子 (Wo Bu Shi Bai Ma Wang Zi) Lyrics 歌詞 with Pinyin | 謝和弦 我不是白馬王子 歌詞 ...
-
Candi Ijo adalah sebuah kompleks percandian bercorak Hindu, berada 4 kilometer arah tenggara dari Candi Ratu Boko atau kita-kira 18 ki...
-
Ngobaran beach is located approximately two kilometers from Ngrenehan beach. At this beach you can see temples, statues, and the beautiful b...
-
South Korean girlband star, Twice confirmed a tour and concert schedule in 2018. As part of their Twice 2nd Tour: Twiceland Zone 2 - Fantasy...
No comments:
Post a Comment