ONLINE SUMMER TRAINING Online Courses Free Tutorials 
 Placement Preparation 
Artificial Intelligence(AI) & Machine Learning(ML) Training in Jaipur
0 like 0 dislike
1.2k views
in VTU B.Tech (CSE-IV Sem) Design and Analysis of Algorithm Lab by Goeduhub's Expert (5.8k points)

Design and implement in Java to find a subset of a given set S = {Sl, S2,.....,Sn} of n positive integers whose SUM is equal to a given positive integer d. For example, if S ={1, 2, 5, 6, 8} and d= 9, there are two solutions {1,2,6}and {1,8}. Display a suitable message, if the given problem instance doesn't have a solution.

Goeduhub's Online Courses @Udemy

For Indian Students- INR 570/- || For International Students- $12.99/-

S.No.

Course Name

Apply Coupon

1.

Tensorflow 2 & Keras:Deep Learning & Artificial Intelligence

Apply Coupon

2.

Computer Vision with OpenCV | Deep Learning CNN Projects

Apply Coupon

3.

Complete Machine Learning & Data Science with Python Apply Coupon

4.

Natural Language Processing-NLP with Deep Learning in Python Apply Coupon

5.

Computer Vision OpenCV Python | YOLO| Deep Learning in Colab Apply Coupon

6.

Complete Python Programming from scratch with Projects Apply Coupon

1 Answer

0 like 0 dislike
by Goeduhub's Expert (5.8k points)
 
Best answer

Java Program

import java.util.Scanner;

import static java.lang.Math.pow;

public class Subset

{

void subset(int num,int n, int x[])

{

int i;

for(i=1;i<=n;i++)

x[i]=0;

for(i=n;num!=0;i--)

{

x[i]=num%2;

num=num/2;

}

}

public static void main(String[] args) 

{

int a[]=new int[10];

int x[]=new int[10];

int n,d,sum,present=0;

int j;

System.out.print("Enter the number of elements of set: ");

Scanner sc=new Scanner(System.in);

n=sc.nextInt();

System.out.print("Enter the elements of set: ");

for(int i=1;i<=n;i++)

a[i]=sc.nextInt();

System.out.print("Enter the positive integer sum: ");

d=sc.nextInt();

if(d>0)

{

for(int i=1;i<=Math.pow(2,n)-1;i++)

{

Subset s=new Subset();

s.subset(i,n,x);

sum=0;

for(j=1;j<=n;j++)

if(x[j]==1)

sum=sum+a[j];

if(d==sum)

{

System.out.print("Subset elements: ");

present=1;

for(j=1;j<=n;j++)

if(x[j]==1)

System.out.print(a[j]+" ");

System.out.println();

}

}

}

if(present==0)

System.out.println("Solution does not exists!");

}

}

Output

Output


For more VTU IV Sem DAA Lab Experiments Click here


Our Mentors(For AI-ML)


Sharda Godara Chaudhary

Mrs. Sharda Godara Chaudhary

An alumna of MNIT-Jaipur and ACCENTURE, Pune

NISHA (IIT BHU)

Ms. Nisha

An alumna of IIT-BHU

Related questions

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy || Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 
...