Is there any way to print the list in one statement without having to use interators.
There sure is: If, while modifying the list, you maintain an array where you store pointers to each element contained in the list, then you can simply loop over the array to get all the objects. No need for iterators!
A more serious suggestion: Just use iterators. There's no need to use them explicitly, if you use a range based loop.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…