CS2 Data Structures Activity
Darci.burdge (Talk | contribs) (→Additional Information:) |
|||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | {| | + | |
− | + | {{Learning Activity Overview | |
− | + | |title= | |
− | | | + | CS2 Data Structures Activity |
− | + | |overview= | |
− | | | + | Using the HFOSS OpenMRS project to illustrate the use of data structures in a complex system. |
− | + | |prerequisites= | |
− | | | + | CS1 and Java |
− | + | |objectives= | |
#Describe the difference between a data structure and the implementation thereof. | #Describe the difference between a data structure and the implementation thereof. | ||
#Explain the application of a data structure in a specific large complex software system. | #Explain the application of a data structure in a specific large complex software system. | ||
#Evaluate tradeoffs in selection of data structures. | #Evaluate tradeoffs in selection of data structures. | ||
#Analyze the time complexity of an algorithm that uses the data structure. | #Analyze the time complexity of an algorithm that uses the data structure. | ||
− | |} | + | |process skills= |
+ | ''What process skills will the student practice while completing this activity?'' | ||
+ | }} | ||
+ | |||
+ | === Background === | ||
− | |||
Data structures are widely used in the development of large complex software systems. The decision to use a particular data structure is made by the programmer or in many cases a development team. Several factors must be considered including storage requirements, time requirements of the various operations that will be performed on the data, and usage patterns (i.e. the number and order of deletions, insertions, updates, etc.). | Data structures are widely used in the development of large complex software systems. The decision to use a particular data structure is made by the programmer or in many cases a development team. Several factors must be considered including storage requirements, time requirements of the various operations that will be performed on the data, and usage patterns (i.e. the number and order of deletions, insertions, updates, etc.). | ||
This activity will explore a class within the OpenMRS code base where a number of data structures are utilized. As such, it is expected that the students will have some general knowledge about the OpenMRS project. | This activity will explore a class within the OpenMRS code base where a number of data structures are utilized. As such, it is expected that the students will have some general knowledge about the OpenMRS project. | ||
− | === Directions | + | === Directions === |
+ | |||
# Go to the [https://github.com/openmrs/openmrs-module-reportingcompatibility/blob/master/api/src/main/java/org/openmrs/module/reportingcompatibility/reporting/export/DataExportFunctions.java DataExportFunctions] class and examine the import statements found at the beginning of the file. Provide the class names of four data structures that are used in DataExportFunctions.java. Note: You may need to refer to the Java APIs and should recall that an interface is not a class. | # Go to the [https://github.com/openmrs/openmrs-module-reportingcompatibility/blob/master/api/src/main/java/org/openmrs/module/reportingcompatibility/reporting/export/DataExportFunctions.java DataExportFunctions] class and examine the import statements found at the beginning of the file. Provide the class names of four data structures that are used in DataExportFunctions.java. Note: You may need to refer to the Java APIs and should recall that an interface is not a class. | ||
# Go to the following link and then answer the questions below: | # Go to the following link and then answer the questions below: | ||
Line 37: | Line 41: | ||
## ‘?’ (hint: wildcards) | ## ‘?’ (hint: wildcards) | ||
## ‘? Extends Map’ | ## ‘? Extends Map’ | ||
− | ## Determine whether each of the following calls to clearMap is valid or invalid. If a call is invalid, explain why. | + | ## Determine whether each of the following calls to '''clearMap''' is valid or invalid. If a call is invalid, explain why. |
### Map = | ### Map = | ||
### Call 2 | ### Call 2 | ||
Line 44: | Line 48: | ||
## Write a Javadoc comment for the clearMap method. | ## Write a Javadoc comment for the clearMap method. | ||
# Go to the [https://github.com/openmrs/openmrs-module-reportingcompatibility/blob/master/api/src/main/java/org/openmrs/module/reportingcompatibility/reporting/export/DataExportFunctions.java#L352-L387 getLastEncounterAttr method]. There are two reference variables declared, ''types'' and ''encounterTypes''. | # Go to the [https://github.com/openmrs/openmrs-module-reportingcompatibility/blob/master/api/src/main/java/org/openmrs/module/reportingcompatibility/reporting/export/DataExportFunctions.java#L352-L387 getLastEncounterAttr method]. There are two reference variables declared, ''types'' and ''encounterTypes''. | ||
− | ## Can you determine what type of object each refers to? If yes, then specify the type of object. If not, then in your opinion what type of object | + | ## Can you determine what type of object each refers to? If yes, then specify the type of object. If not, then in your opinion what type of object is it most likely to refer to. Explain your answer. |
## Why do you think these data structures were selected by the developers? | ## Why do you think these data structures were selected by the developers? | ||
# Analysis question…I’m not sure this method is a good choice for analysis. Thoughts? Would some other code segment within this class be better suited for this type of question? | # Analysis question…I’m not sure this method is a good choice for analysis. Thoughts? Would some other code segment within this class be better suited for this type of question? | ||
− | === Deliverables | + | === Deliverables === |
+ | |||
Written artifact to Instructor | Written artifact to Instructor | ||
− | === Assessment | + | === Assessment === |
+ | |||
How will the activity be graded? | How will the activity be graded? | ||
Line 82: | Line 88: | ||
=== Comments: === | === Comments: === | ||
− | + | # You may choose to leave out analysis. | |
+ | # Depending on how many data structures you have covered, you may choose to reduce the number of data structures you are asking your students to identify. | ||
+ | # This activity may be useful even for students who are not learning Java. For example, students who know C++ can, with reasonable effort, can learn enough about Java to complete the activity. The added benefit is that they can learn that concepts transcend the language. | ||
− | + | === Additional Information === | |
− | + | {{Learning Activity Info | |
− | + | |acm unit= | |
− | + | Programming Languages / Object-Oriented Programming | |
− | + | |acm topic= | |
− | + | Using collection classes | |
− | | | + | |difficulty= |
− | + | medium | |
− | | | + | |time= |
− | + | Varies, designed as one assignment or laboratory activity | |
− | | | + | |environment= |
− | + | Access to OpenMRS codebase | |
− | | | + | |author= |
− | + | Darci Burdge, Patricia Ordóñez, Jeff Ward, Mezei Razvan, Stewart Weiss, Joanna Klukowska | |
− | | | + | |source= |
− | + | POSSE 201405 Workshop Activity | |
− | | | + | |license= |
− | + | {{License CC BY SA}} | |
− | | | + | }} |
− | + | ||
− | + | ||
=== Suggestions for Open Source Community: === | === Suggestions for Open Source Community: === | ||
Suggestions for an open source community member who is working in conjunction with the instructor. | Suggestions for an open source community member who is working in conjunction with the instructor. | ||
− | + | [[Category:Learning_Activity]] | |
− | + | [[Category:CS2]] | |
− | + | [[Category:Good Draft]] | |
− | [ | + | |
− | + | ||
− | [ | + | |
− | + | ||
− | [[Category: | + | |
− | [[Category: | + |
Latest revision as of 21:55, 7 September 2018
Title |
CS2 Data Structures Activity |
---|---|
Overview |
Using the HFOSS OpenMRS project to illustrate the use of data structures in a complex system. |
Prerequisites |
CS1 and Java |
Learning Objectives |
After successfully completing this activity, the learner should be able to:
|
Process Skills Practiced |
What process skills will the student practice while completing this activity? |
Background
Data structures are widely used in the development of large complex software systems. The decision to use a particular data structure is made by the programmer or in many cases a development team. Several factors must be considered including storage requirements, time requirements of the various operations that will be performed on the data, and usage patterns (i.e. the number and order of deletions, insertions, updates, etc.).
This activity will explore a class within the OpenMRS code base where a number of data structures are utilized. As such, it is expected that the students will have some general knowledge about the OpenMRS project.
Directions
- Go to the DataExportFunctions class and examine the import statements found at the beginning of the file. Provide the class names of four data structures that are used in DataExportFunctions.java. Note: You may need to refer to the Java APIs and should recall that an interface is not a class.
- Go to the following link and then answer the questions below:
- What is meant by the term key? The term value?
- Given,
- Map<String, int> populations = new HashMap<String, int> ();
- populations.put(“11530”, 27273);
- populations.put(“28601”, 50026);
- populations.put(“38111”, 41742);
- What would the following call to the get method return?
- System.out.println(“The population for Memphis, TN is “ + populations.get(“38111”);
- If you wanted to store student information such as a student id, name, major, and gpa, which one of these would you choose as a key? Given that choice of a key, which of the remaining ones could be used as the associated value?
- The data structures within the DataExportFunctions class are used in a multitude of ways and it is likely that you are unfamiliar with some of the syntax. Go to the clearMap method. You will find that it uses wildcard characters (‘?’).
- Briefly explain what each of the following means and explain the benefit of using them.
- ‘?’ (hint: wildcards)
- ‘? Extends Map’
- Determine whether each of the following calls to clearMap is valid or invalid. If a call is invalid, explain why.
- Map =
- Call 2
- Call 3
- Call 4
- Write a Javadoc comment for the clearMap method.
- Go to the getLastEncounterAttr method. There are two reference variables declared, types and encounterTypes.
- Can you determine what type of object each refers to? If yes, then specify the type of object. If not, then in your opinion what type of object is it most likely to refer to. Explain your answer.
- Why do you think these data structures were selected by the developers?
- Analysis question…I’m not sure this method is a good choice for analysis. Thoughts? Would some other code segment within this class be better suited for this type of question?
Deliverables
Written artifact to Instructor
Assessment
How will the activity be graded?
How will learning will be measured?
Include sample assessment questions/rubrics.
Criteria | Level 1 (fail) | Level 2 (pass) | Level 3 (good) | Level 4 (exceptional) |
---|---|---|---|---|
The purpose of the project | ||||
Why the project is open source |
Comments:
- You may choose to leave out analysis.
- Depending on how many data structures you have covered, you may choose to reduce the number of data structures you are asking your students to identify.
- This activity may be useful even for students who are not learning Java. For example, students who know C++ can, with reasonable effort, can learn enough about Java to complete the activity. The added benefit is that they can learn that concepts transcend the language.
Additional Information
ACM BoK Area & Unit(s) |
Programming Languages / Object-Oriented Programming |
---|---|
ACM BoK Topic(s) |
Using collection classes |
Difficulty |
medium |
Estimated Time to Complete |
Varies, designed as one assignment or laboratory activity |
Environment / Materials |
Access to OpenMRS codebase |
Author(s) |
Darci Burdge, Patricia Ordóñez, Jeff Ward, Mezei Razvan, Stewart Weiss, Joanna Klukowska |
Source |
POSSE 201405 Workshop Activity |
License |
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License |
Suggestions for Open Source Community:
Suggestions for an open source community member who is working in conjunction with the instructor.