skip to main
|
skip to sidebar
Peter Huang
Wednesday, March 13, 2013
DLL - Append
void DLL::append(int data){
if(_tail != NULL){
_tail->_next = new Node(data, _tail->_prev, _tail);
}
}
No comments:
Post a Comment
Older Post
Home
Subscribe to:
Post Comments (Atom)
Followers
Blog Archive
▼
2013
(4)
▼
March
(1)
DLL - Append
►
February
(1)
►
January
(2)
About Me
Peter Huang
View my complete profile
No comments:
Post a Comment