University of Nevada Las Vegas
Howard R. Hughes College of Engineering
Department of Computer Science
My Home Page

Computer Science 302
Introduction to Data Structures
Spring 2018

Revised April 29, 2018

Please look at the Announcements Page every day.



Instructor:
Dr. Larmore
Office, TBE B378-B.
Telephone 702-895-1096. Never leave a voice message on my phone.
Email: lawrence "dot" larmore "at" unlv "dot" edu
Office Hours: Subject to Change.
1:00-2:00 Mondays and Wednesdays.
Contacting Me:
It's best to send me email. Be sure to write "CS302" in the subject field so that I know what the message is about. (I delete lots of messages without reading them, based on the subject fields.)
You may also telephone my office, but do not leave a message.
Please, never try to communicate with me by leaving notes on my door, under my door, or in my mailbox in the department office, as those notes get lost, and I can't retrieve them remotely.
If you ever have to leave me anything physical, such as homework papers, please do not push it under my door or put it in my mailbox. If you can't find me, please give it to one of the staff in the computer science department office in room TBE A211-A.
Graduate Assistant:
Kaushik Deshmukh
Email: deshmk1 "at" unlv "dot" nevada "dot" edu
Office Hours: Mon 12-1, Tue 3-4, Wed 12-1, Thu 2:30-3
TBE B346
Days of Instruction:
January 17, 2017 - May 2, 2017.
George Washington's Birthday:
February 19
Spring Break:
March 26 and March 28
Time of Instruction:
8:30 - 9:45 Mondays and Wednesdays
Place of Instruction:
TBE B-176
Textbook:
Data Structures and Algorithm Analysis in C++ Third Edition by Mark Allen Weiss
Data Structures and Algorithm Analysis in C++ Fourth Edition by Mark Allen Weiss
Prerequisites:
CSC 202 (Computer Science II)
MAT 181 (Elementary Calculus I)
Anyone who has not taken all prerequisites and earned a grade of "C" or better in each must see me immediately. I will not hesitate to administratively drop a student who lacks the prerequisites, as unprepared students slow down the class. I will be happy to sign a prerequisite waiver form if you have actually taken the prerequisites but the registration system doesn't know this, such as if you took them at another institution. If you come to see me about this, please bring unofficial copies of your transcripts from that other institution.
Examinations
First Examination: Wednesday, February 7
Second Examination: Wednesday, March 7
Third Examination: Wednesday, April 11
Final Examination: Wednesday, May 9, 8:00 - 10:00
Syllabus
Homework
There will be hand-written assignments and programming assignments. All programming assignments must be written in C++, must be submitted electronically from your engineering account, and must compile and run on student.egr.edu.
First Assignment
Additional submission instructions, (Written by Lucas Bang, the graduate assistant during the Fall 2011 Semester.)
You may permit another student to look at your code, but you are forbidden to make a copy of your code available to another student electronically.
If a portion of the code you turn in was obtained from another source (such as a web site) you must give a reference within your code, such as: "This procedure was from http://www.codesource.com"
Grading
The grading will be based on examinations and homework. The homework will count much less than the examinations, because I am allowing you to work together on the homework.
However, the examinations will be designed in such a way that if you do not do homework, or if you simply allow others to do it for you, you will not do well on the exams.
  • Have you ever written a computer program?
    Yes.
  • Did you use an algorithm?
    Yes. Every program is the implementation of some algorithm.
  • Did you use data structues?
    Yes - at the very least, you used the data structures built into the language you used, for example:
    1. integer
    2. boolean
    3. array
  • Did you use any data structures or algorithms from a library?
  • Did you create any data structures or algorithms?
  • Can you be a programmer using only data structures and algorithms available in a library?