FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaProgramming/Recursion/PrintSubsequences.java at main · PrityKumari14/JavaProgramming · GitHub
PrityKumari14
/
JavaProgramming
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaProgramming
/
Recursion
/
PrintSubsequences.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (20 loc) · 718 Bytes
Breadcrumbs
JavaProgramming
/
Recursion
/
PrintSubsequences.java
Copy path
File metadata and controls
23 lines (20 loc) · 718 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Print all the subsequences of a string.
// time complexity = O(2^n) , n= no. of character in string
package
Recursion
;
public
class
PrintSubsequences
{
public
static
void
subsequences
(
String
str
,
int
idx
,
String
newStr
){
if
(
idx
==
str
.
length
()){
System
.
out
.
println
(
newStr
);
return
;
}
char
currChar
=
str
.
charAt
(
idx
);
// to be come the character in new string(newstr)
subsequences
(
str
,
idx
+
1
,
newStr
+
currChar
);
// not to be come the character in the new string(newStr)
subsequences
(
str
,
idx
+
1
,
newStr
);
}
public
static
void
main
(
String
[]
args
) {
String
str
=
"abc"
;
subsequences
(
str
,
0
,
""
);
}
}
Back
|
FazBrowse Home
|
New Git URL