Lectures | MW 2:30pm - 4:10pm |
Labs | R 1:40pm - 4:10pm |
Room |
E&T C159 |
Instructor |
Chengyu
Sun, csun@calstatela.edu |
Office
Hours |
MW 1:30-2:30pm, MW 4:10-5:10pm, and TR 4:10-6:10pm, or by appointment, in E&T A317 |
Announcements |
if( size == 0 || i == size )
insert( o
);
should be
if( size == 0 || i == size )
{
insert(o); return; }
otherwise some
objects will get
inserted twice. Sorry about the mistake, and thanks to Cesar for
pointing it out.
|