written 6.9 years ago by | modified 2.8 years ago by |
Subject: Analysis Of Algorithm
Topic: Backtracking
Difficulty: High
written 6.9 years ago by | modified 2.8 years ago by |
Subject: Analysis Of Algorithm
Topic: Backtracking
Difficulty: High
written 6.7 years ago by |
Subset sum problem is to find subset of elements that are selected from a given set whose sum adds up to a given number K. We are considering the set contains non-negative values. It is assumed that the input set is unique (no duplicates are presented).
Using exhaustive search we consider all subsets irrespective of whether they satisfy given constraints or not. Backtracking can be used to make a systematic consideration of the elements to be selected.
Assume given set of 4 elements, say w[1] … w[4]. Tree diagrams can be used to design backtracking algorithms. The following tree diagram depicts approach of generating variable sized tuple.