Author SHA1 Message Date
Arefe00 90f922710a Update students.txt 2026-07-16 14:19:55 +00:00
Arefe Talebi 3713f08085 WS07 2026-07-16 17:20:32 +03:30
11 changed files with 121 additions and 30 deletions
+10
View File
@@ -0,0 +1,10 @@
# Default ignored files
/shelf/
/workspace.xml
# Ignored default folder with query files
/queries/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<annotationProcessing>
<profile name="Maven default annotation processors profile" enabled="true">
<sourceOutputDir name="target/generated-sources/annotations" />
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
<outputRelativeToContentRoot value="true" />
<module name="WS-07-Multithreading-Basics-and-Hashing" />
</profile>
</annotationProcessing>
</component>
</project>
+7
View File
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
</component>
</project>
+20
View File
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RemoteRepositoriesConfiguration">
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Maven Central repository" />
<option name="url" value="https://repo1.maven.org/maven2" />
</remote-repository>
<remote-repository>
<option name="id" value="jboss.community" />
<option name="name" value="JBoss Community repository" />
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
</remote-repository>
<remote-repository>
<option name="id" value="central" />
<option name="name" value="Central Repository" />
<option name="url" value="https://mirror-maven.runflare.com/maven2" />
</remote-repository>
</component>
</project>
+12
View File
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">
<option name="originalFiles">
<list>
<option value="$PROJECT_DIR$/pom.xml" />
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="23" project-jdk-type="JavaSDK" />
</project>
Generated
+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>
+18 -12
View File
@@ -37,27 +37,33 @@ public class Main {
// Split data into 3 parts // Split data into 3 parts
List<String> part1 = null; int size = data.size();
int chunk = (size + 2) / 3;
List<String> part2 = null; List<String> part1 = data.subList(0, Math.min(chunk, size));
List<String> part3 = null; List<String> part2 = data.subList(Math.min(chunk, size), Math.min(2 * chunk, size));
List<String> part3 = data.subList(Math.min(2 * chunk, size), size);
// TODO: // TODO:
StudentLoader t1 = null; StudentLoader t1 = new StudentLoader(part1);
StudentLoader t2 = new StudentLoader(part2);
StudentLoader t2 = null; StudentLoader t3 = new StudentLoader(part3);
StudentLoader t3 = null;
// TODO: // TODO:
t1.start();
t2.start();
t3.start();
// start() t1.join();
t2.join();
t3.join();
// join() manager.addStudents(t1.getStudents());
manager.addStudents(t2.getStudents());
// merge results manager.addStudents(t3.getStudents());
} }
+4 -2
View File
@@ -47,7 +47,7 @@ public class Student {
// Example: // Example:
// return id % 97; // return id % 97;
return 0; return id % 97;
} }
@Override @Override
@@ -64,7 +64,9 @@ public class Student {
// Step 3: // Step 3:
// Compare IDs // Compare IDs
return false; if (obj == null) return false;
Student other = (Student) obj;
return this.id == other.id;
} }
@Override @Override
@@ -18,6 +18,8 @@ public class StudentManager {
// Hint: // Hint:
// addAll() // addAll()
students.addAll(newStudents);
} }
public Student searchStudent(int id) { public Student searchStudent(int id) {
@@ -28,6 +30,12 @@ public class StudentManager {
// Compare IDs // Compare IDs
for (Student student : students) {
if (student.getId() == id) {
return student;
}
}
return null; return null;
} }
@@ -39,6 +47,13 @@ public class StudentManager {
// Remove student // Remove student
for (Student student : students) {
if (student.getId() == id) {
students.remove(student);
return true;
}
}
return false; return false;
} }
+10 -6
View File
@@ -27,26 +27,30 @@ public class StudentLoader extends Thread {
// TODO: // TODO:
/*
Example line:
1001,Aryan,Computer Science,3.7
*/
for (String line : lines) { for (String line : lines) {
// TODO: // TODO:
// split line // split line
String[] parts = line.split(",");
// TODO: // TODO:
// read values // read values
int id = Integer.parseInt(parts[0]);
String name = parts[1];
String major = parts[2];
double gpa = Double.parseDouble(parts[3]);
// TODO: // TODO:
// create Student // create Student
Student student = new Student(id, name, major, gpa);
// TODO: // TODO:
// add to students list // add to students list
students.add(student);
} }
} }
+1 -5
View File
@@ -19,14 +19,10 @@ public class FileManager {
while ((line = reader.readLine()) != null) { while ((line = reader.readLine()) != null) {
// TODO: // TODO:
// Add line to list // Add line to list
lines.add(line);
} }
reader.close(); reader.close();
return lines; return lines;
} }
} }