Intro to CIT 594 http://www.cis.upenn.edu/~matuszek/cit594-2006.html.

Slides:



Advertisements
Similar presentations
Intro to CIT 594
Advertisements

Introduction to CS170. CS170 has multiple sections Each section has its own class websites URLs for different sections: Section 000:
Intro to CIT 594
1 Intro to CIT 594 ~matuszek/cit594.html.
Intro to CIT 594
CMSC 132: Object-Oriented Programming II
CMSC 132: Object-Oriented Programming II Nelson Padua-Perez William Pugh Department of Computer Science University of Maryland, College Park.
COMP 110 Introduction to Programming Mr. Joshua Stough August 22, 2007 Monday/Wednesday/Friday 3:00-4:15 Gardner Hall 307.
COMP 14 – 02: Introduction to Programming Andrew Leaver-Fay August 31, 2005 Monday/Wednesday 3-4:15 pm Peabody 217 Friday 3-3:50pm Peabody 217.
Intro to CIT 594 ~matuszek/cit594.html.
July 16, Introduction to CS II Data Structures Hongwei Xi Comp. Sci. Dept. Boston University.
Intro to CIT 594
What you need to know about this class A powerpoint syllabus.
Math 125 Statistics. About me  Nedjla Ougouag, PhD  Office: Room 702H  Ph: (312)   Homepage:
Welcome to CS 3331, Advanced Object-Oriented Programming Fall 2009 Dept. of Computer Science University of Texas at El Paso.
COMP 111 Programming Languages 1 First Day. Course COMP111 Dr. Abdul-Hameed Assawadi Office: Room AS15 – No. 2 Tel: Ext. ??
Welcome to CS 3260 Dennis A. Fairclough. Overview Course Canvas Web Site Course Materials Lab Assignments Homework Grading Exams Withdrawing from Class.
CSE 501N Fall ‘09 00: Introduction 27 August 2009 Nick Leidenfrost.
COMP Introduction to Programming Yi Hong May 13, 2015.
Lecture 1 Page 1 CS 111 Summer 2015 Introduction CS 111 Operating System Principles.
2 September Statistics for Behavioral Scientists Psychology W1610x.
Undergraduate Survey for Math Dialogue March 2010 Transition from High School to University Technology in High School Math Classes Resources for Undergraduates.
CS1201: Programming Language 2 C++(Course Introduction) Level 2 Nouf Aljaffan 1 st Term Nouf Aljaffan (C) CSC 1201 Course at KSU.
Catie Welsh January 10, 2011 MWF 1-1:50 pm Sitterson 014.
CSCI 51 Introduction to Computer Science Dr. Joshua Stough January 20, 2009.
17-Dec-03 Intro to CIT 594 ~matuszek/cit594.html.
Introduction to Data Structures
Advanced Database Course (ESED5204) Eng. Hanan Alyazji University of Palestine Software Engineering Department.
June 19, Liang-Jun Zhang MTWRF 9:45-11:15 am Sitterson Hall 011 Comp 110 Introduction to Programming.
Using Alice in an introductory programming course for non-CS majors Adelaida A. Medlock Department of Computer Science Drexel University
SE-2030 Software Engineering Tools and Practices SE-2030 Dr. Mark L. Hornick 1.
Intro to CIT 594
Data Structures and Algorithms in Java AlaaEddin 2012.
Course Information CSE 2031 Fall Instructor U. T. Nguyen /new-yen/ Office: CSEB Office hours:  Tuesday,
CS140 – Computer Programming 1 Course Overview First Semester – Fall /1438 – 2016/2017 CS140 - Computer Programming 11.
CSc 120 Introduction to Computer Programing II
Computer Engineering Department Islamic University of Gaza
CSc 1302 Principles of Computer Science II
Course Introduction – Fall 2014
CSc 020: Programming Concepts and Methodology II
Information Systems in Organizations Introduction instructor’s name
Introduction to Programming 2
Information Systems in Organizations Introduction instructor’s name
Lecture 0 Course Information
Information Systems in Organizations Introduction instructor’s name
Labs, etc. 19-Nov-18.
EECE 310 Software Engineering
FALL 2018 Welcome to ESL.
CSC215 Lecture Orientation.
Introduction to CS II Data Structures
Introduction to Programming Using C++
EE422C Software Design and Implementation II
Information Systems in Organizations Introduction Amy Lavin
PHYS 202 Intro Physics II Catalog description: A continuation of PHYS 201 covering the topics of electricity and magnetism, light, and modern physics.
About This Course.
Automata and Formal Languages
CSC215 Lecture Orientation.
Information Systems in Organizations Introduction Adam Alalouf
Course Information EECS 2031 Fall 2016.
CS 2530 Intermediate Computing Dr. Schafer
CSCE 221 Professor Lupoli TAMU CSCE 221 Intro.
Intro to CIT 594
Office hours: By Appt
Intro to CIT 594
Syllabus Highlights CSE 1310 – Introduction to Computers and Programming Alexandra Stefan University of Texas at Arlington.
Dr. David Matuszek Spring, 2003
Welcome to College English 1!
Review of Previous Lesson
Welcome to the First-Year Experience!
Welcome to the First-Year Experience!
Presentation transcript:

Intro to CIT 594 http://www.cis.upenn.edu/~matuszek/cit594-2006.html

Prerequisites The formal prerequisite is CIT 591 CIT 591 was primarily a course in Java If you did not take CIT 591... You must be a reasonably good Java programmer, including programming applications, applets, and Swing You must be familiar with, or prepared to learn quickly: JUnit testing The Eclipse IDE You are expected to have good Java programming style Other programming languages can not be used as a substitute for Java

What the course is about There are four main, interrelated topics in CIT594: Recursion Data structures Algorithms Analysis of algorithms In addition, we will continue to explore good programming practices Good programming style Good habits, such as creating test cases Use of tools, such as Eclipse and JUnit It will also be necessary to cover more Java

Required textbook #1 Data Structures & Algorithms in Java, Second Edition, by Robert Lafore This book has the clearest and most understandable explanations of algorithms that I have ever seen (and I’ve seen a lot of Data Structures textbooks!) It does not, however, cover some of the essential math we will need

Recommended book #1 If you don’t have a book that describes the new features in Java 5 (especially generics), you should get one Here’s my favorite:

Recommended book #2 The Elements of Java Style, by Alan Vermeulen (ed.) This book describes the style that will be expected of you

Java in this course This is a course in algorithms and data structures, not a second course in Java But... Java 5.0 will be the primary programming language We will study Java Collections in detail, as they are extremely relevant to the course You will be expected to use Eclipse 3.1M4 or newer (the current version is 3.1.1) Eclipse 3.0 does not support Java 5.0

Java generics C++ programmers: Java generics are similar to C++ templates We will study generics in some detail, but for now, here’s all you need to know about generics: Generics have little or no relevance to the data structure concepts we will be studying in this course Generics completely change the way we code data structures

Java Collections Java Collections implement many of the most important data structures for you A traditional data structures course would have you implement these yourself I don’t believe in re-inventing the wheel However, you need to know how these data structures are implemented, for the times when you need something more than Java gives you

Algorithms There are literally thousands of published algorithms We will cover: a few algorithms that are related to the data structures we are studying a few more algorithms that your instructor especially likes It’s usually better to find an existing algorithm than to re-invent it yourself The Data Structures & Algorithms in Java textbook is an excellent textbook for beginning data structures and algorithms, but it completely ignores Java’s collections

Analysis of algorithms Analysis of algorithms is a relatively small part of this course, but it’s an important part Analysis can tell you how fast an algorithm will run, and how much space it will require A good algorithm, even if badly coded, can run circles around a poor algorithm that is carefully tuned and highly optimized

Assignments Except as otherwise noted, all assignments: Are to be done solo (by yourself). As before, You may discuss the assignments with other students You may help (and get help with) debugging You may not give your source code to anyone Should be done in Eclipse Should include complete JUnit tests, and Should include complete javadoc documentation Late assignments will lose 5 points per day, and may not be accepted if more than a week late

Grading We will have: Grades will be weighted as follows: Approximately one assignment per week One midterm One final exam Grades will be curved We will use Blackboard to turn in assignments Grades will be weighted as follows: 50% assignments 20% midterm 30% final exam If you feel a grading error has been made, you have one week after grades have been posted to bring it to our attention

Office hours and (no) labs I will be more available than last semester I will post office hours; these are the times that I will try hard to be in my office and available When my door is open, I’m probably available Please try to keep visits short The TA will also have office hours We will not have extra help sessions or labs this semester We will be doing all or almost all individual (solo) projects, but there may be some exceptions

The End