Assignment 2 A Solution
Question 1
Write a program to create an ArrayList of Integer type and perform the below operation on it
- Display the list
- Ask the user to enter a number and search that number is it present in the list or not.
- Remove an element from an asked position.
- Add a condition to check the ArrayList is empty or not.
- Without Comments
- With comments
import java.util.*;
public class Q1 {
public static void main(String[] args) {
ArrayList<Integer> numbers = new ArrayList<>();
numbers.add(10);
numbers.add(20);
numbers.add(30);
numbers.add(40);
numbers.add(50);
numbers.add(60);
numbers.add(70);
System.out.println(numbers);
Scanner scanner = new Scanner(System.in);
System.out.print("Enter number to be searched: ");
int searchNumber = scanner.nextInt();
System.out.println("The element " + searchNumber + " is present in the ArrayList: " + numbers.contains(searchNumber));
System.out.print("Enter position of number to be removed: ");
int position = scanner.nextInt();
numbers.remove(position);
System.out.println("After removal: " + numbers);
boolean isEmpty = numbers.isEmpty();
if (isEmpty) {
System.out.println("The ArrayList is empty.");
} else {
System.out.println("The ArrayList is not empty.");
}
scanner.close();
}
}
import java.util.*;
public class Q1 {
public static void main(String[] args) {
// Create an ArrayList and add elements
ArrayList<Integer> numbers = new ArrayList<>();
numbers.add(10);
numbers.add(20);
numbers.add(30);
numbers.add(40);
numbers.add(50);
numbers.add(60);
numbers.add(70);
System.out.println(numbers);
// Search for an element
Scanner scanner = new Scanner(System.in);
System.out.print("Enter number to be searched: ");
int searchNumber = scanner.nextInt();
System.out.println("The element " + searchNumber + " is present in the ArrayList: " + numbers.contains(searchNumber));
// Remove an element at a specific position
System.out.print("Enter position of number to be removed: ");
int position = scanner.nextInt();
numbers.remove(position);
System.out.println("After removal: " + numbers);
// Check if the ArrayList is empty
boolean isEmpty = numbers.isEmpty();
if (isEmpty) {
System.out.println("The ArrayList is empty.");
} else {
System.out.println("The ArrayList is not empty.");
}
scanner.close();
}
}
Credit:
Question 2
Create a class Student having member variable name, age, mark and required member variable. Create an LikedList of Student type and perform the below operation on it
- Display the list
- Ask the user to enter a student object and print the existence of the object. Specify is the object is search according to reference or contain.
- Remove an specified student object.
- Count the number of object present in the list
- Without Comments
- With comments
import java.util.*;
class Student {
String name;
int age;
double mark;
Student(String name, int age, double mark) {
this.name = name;
this.age = age;
this.mark = mark;
}
public boolean equals(Object obj) {
if (obj instanceof Student) {
Student other = (Student) obj;
return this.name.equals(other.name) && this.age == other.age && this.mark == other.mark;
}
return false;
}
}
public class Q2 {
public static void main(String[] args) {
LinkedList<Student> studentList = new LinkedList<>();
studentList.add(new Student("Vivek", 19, 10.0));
studentList.add(new Student("Aditi", 19, 10.0));
studentList.add(new Student("Arya", 20, 10.0));
System.out.println("Number of students now: " + studentList.size());
for (Student student : studentList) {
System.out.println(student.name + " " + student.age + " " + student.mark);
}
Student searchStudent = new Student("Aditi", 19, 10.0);
System.out.println("Student exists in the list? " + studentList.contains(searchStudent));
Student removeStudent = new Student("Arya", 20, 10.0);
studentList.remove(removeStudent);
System.out.println("Number of students now: " + studentList.size());
}
}
import java.util.*;
class Student {
String name;
int age;
double mark;
Student(String name, int age, double mark) {
this.name = name;
this.age = age;
this.mark = mark;
}
// Override the equals() method to define custom equality for Student objects
public boolean equals(Object obj) {
if (obj instanceof Student) {
Student other = (Student) obj;
return this.name.equals(other.name) && this.age == other.age && this.mark == other.mark;
}
return false;
}
}
public class Q2 {
public static void main(String[] args) {
// Create a LinkedList of Student objects
LinkedList<Student> studentList = new LinkedList<>();
// Add Student objects to the list
studentList.add(new Student("Vivek", 19, 10.0));
studentList.add(new Student("Aditi", 19, 10.0));
studentList.add(new Student("Arya", 20, 10.0));
// Print the number of students in the list
System.out.println("Number of students now: " + studentList.size());
// Iterate over the list and print student details
for (Student student : studentList) {
System.out.println(student.name + " " + student.age + " " + student.mark);
}
// Create a student for searching
Student searchStudent = new Student("Aditi", 19, 10.0);
// Check if the student exists in the list
System.out.println("Student exists in the list? " + studentList.contains(searchStudent));
// Create a student for removal
Student removeStudent = new Student("Arya", 20, 10.0);
// Remove the student from the list
studentList.remove(removeStudent);
// Print the number of students in the list after removal
System.out.println("Number of students now: " + studentList.size());
}
}
Credit:
Question 3
Write a java program to convert a decimal to binary equivalent using stack(Stack collection)
- Without Comments
- With comments
import java.util.*;
public class Q3 {
public static void main(String[] args) {
Stack<Integer> binaryStack = new Stack<Integer>();
Scanner sc = new Scanner(System.in);
System.out.print("Enter a Decimal Integer: ");
int decimalNumber = sc.nextInt();
while (decimalNumber > 0) {
int remainder = decimalNumber % 2;
binaryStack.push(remainder);
decimalNumber /= 2;
}
System.out.print("The binary equivalent is: ");
while (!binaryStack.isEmpty()) {
System.out.print(binaryStack.pop());
}
sc.close();
}
}
import java.util.*;
public class Q3 {
public static void main(String[] args) {
Stack<Integer> binaryStack = new Stack<Integer>();
Scanner sc = new Scanner(System.in);
System.out.print("Enter a Decimal Integer: ");
int decimalNumber = sc.nextInt();
// Convert decimal to binary and push remainders to the stack
while (decimalNumber > 0) {
int remainder = decimalNumber % 2;
binaryStack.push(remainder);
decimalNumber /= 2;
}
System.out.print("The binary equivalent is: ");
// Pop and print binary digits from the stack
while (!binaryStack.isEmpty()) {
System.out.print(binaryStack.pop());
}
sc.close();
}
}
Credit:
Question 4
Write a java program to evaluate a postfix expression using Stack
- Without Comments
- With comments
import java.util.*;
public class Q4 {
public static int evaluatePostfix(String postfix) {
Stack<Integer> stack = new Stack<Integer>();
for (int i = 0; i < postfix.length(); i++) {
char ch = postfix.charAt(i);
if (Character.isDigit(ch)) {
stack.push(ch - '0');
} else {
int operand2 = stack.pop();
int operand1 = stack.pop();
int result = 0;
switch (ch) {
case '+':
result = operand1 + operand2;
break;
case '-':
result = operand1 - operand2;
break;
case '*':
result = operand1 * operand2;
break;
case '/':
result = operand1 / operand2;
break;
}
stack.push(result);
}
}
return stack.pop();
}
public static void main(String args[]) {
String postfix = "53+82-*";
int result = evaluatePostfix(postfix);
System.out.println("The result of " + postfix + " is " + result);
}
}
import java.util.*;
public class Q4 {
// Evaluates a postfix expression and returns the result
public static int evaluatePostfix(String postfix) {
// Create a new stack to hold the operands
Stack<Integer> stack = new Stack<Integer>();
// Loop through each character in the postfix expression
for (int i = 0; i < postfix.length(); i++) {
// Get the current character
char ch = postfix.charAt(i);
// If the character is a digit, push it onto the stack
if (Character.isDigit(ch)) {
stack.push(ch - '0');
}
// Otherwise, pop the top two operands from the stack, apply the operator, and push the result back onto the stack
else {
int operand2 = stack.pop();
int operand1 = stack.pop();
int result = 0;
switch (ch) {
case '+':
result = operand1 + operand2;
break;
case '-':
result = operand1 - operand2;
break;
case '*':
result = operand1 * operand2;
break;
case '/':
result = operand1 / operand2;
break;
}
stack.push(result);
}
}
// The final result is the only item left on the stack
return stack.pop();
}
public static void main(String args[]) {
// Define the postfix expression to evaluate
String postfix = "53+82-*";
// Evaluate the postfix expression and print the result
int result = evaluatePostfix(postfix);
System.out.println("The result of " + postfix + " is " + result);
}
}
Credit:
Question 5
Write a java program to traverse a graph using breadth first search (use ArrayDeque collection )
info
The answer has not yet been updated.
Question 6
Write a java program to traverse a graph using depth first search (use Stack collection )
info
The answer has not yet been updated.