-
Notifications
You must be signed in to change notification settings - Fork 0
/
StudentGroup.java
141 lines (115 loc) · 2.97 KB
/
StudentGroup.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import java.util.Date;
/**
* A fix-sized array of students
* array length should always be equal to the number of stored elements
* after the element was removed the size of the array should be equal to the number of stored elements
* after the element was added the size of the array should be equal to the number of stored elements
* null elements are not allowed to be stored in the array
*
* You may add new methods, fields to this class, but DO NOT RENAME any given class, interface or method
* DO NOT PUT any classes into packages
*
*/
public class StudentGroup implements StudentArrayOperation {
private Student[] students;
/**
* DO NOT remove or change this constructor, it will be used during task check
* @param length
*/
public StudentGroup(int length) {
this.students = new Student[length];
}
@Override
public Student[] getStudents() {
return null;
}
@Override
public void setStudents(Student[] students) {
student.setId(createid("a",1));
student list.add(students);
}
@Override
public Student getStudent(int index) {
studentId;
return null;
}
@Override
public void setStudent(Student student, int index) {
studentgroup.remove(students);
}
@Override
public void addFirst(Student student) {
student.setid("a",1);
}
@Override
public void addLast(Student student) {
student.setid("b",1);
}
@Override
public void add(Student student, int index) {
studentgroup.remove(students);
}
@Override
public void remove(int index) {
studentId;
}
@Override
public void remove(Student student) {
// Add your implementation here
}
@Override
public void removeFromIndex(int index) {
// Add your implementation here
}
@Override
public void removeFromElement(Student student) {
// Add your implementation here
}
@Override
public void removeToIndex(int index) {
// Add your implementation here
}
@Override
public void removeToElement(Student student) {
// Add your implementation here
}
@Override
public void bubbleSort() {
// Add your implementation here
}
@Override
public Student[] getByBirthDate(Date date) {
// Add your implementation here
return null;
}
@Override
public Student[] getBetweenBirthDates(Date firstDate, Date lastDate) {
// Add your implementation here
return null;
}
@Override
public Student[] getNearBirthDate(Date date, int days) {
// Add your implementation here
return null;
}
@Override
public int getCurrentAgeByDate(int indexOfStudent) {
// Add your implementation here
return 0;
}
@Override
public Student[] getStudentsByAge(int age) {
// Add your implementation here
return null;
}
@Override
public Student[] getStudentsWithMaxAvgMark() {
// Add your implementation here
return null;
}
@Override
public Student getNextStudent(Student student) {
// Add your implementation here
return null;
}
}