FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaProgramming/Recursion/PrintKeypadCombination.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
/
PrintKeypadCombination.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (32 loc) · 825 Bytes
Breadcrumbs
JavaProgramming
/
Recursion
/
PrintKeypadCombination.java
Copy path
File metadata and controls
35 lines (32 loc) · 825 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
24
25
26
27
28
29
30
31
32
33
34
35
/*Print keypad combination
( 0 -> .;
1 -> abc
2 -> def
3 -> ghi
4 -> jkl
5 -> mno
6 -> pqrs
7 -> tu
8 -> vwx
9 -> yz
)*/
// time complexity = O(4^n)
package
Recursion
;
public
class
PrintKeypadCombination
{
public
static
String
[]
keypad
= {
"."
,
"abc"
,
"def"
,
"ghi"
,
"jkl"
,
"mno"
,
"pqrs"
,
"tu"
,
"vwx"
,
"yz"
};
public
static
void
printComb
(
String
str
,
int
idx
,
String
combination
){
if
(
idx
==
str
.
length
()){
System
.
out
.
println
(
combination
);
return
;
}
char
currChar
=
str
.
charAt
(
idx
);
String
mapping
=
keypad
[
currChar
-
'0'
];
for
(
int
i
=
0
;
i
<
mapping
.
length
();
i
++){
printComb
(
str
,
idx
+
1
,
combination
+
mapping
.
charAt
(
i
));
}
}
public
static
void
main
(
String
[]
args
) {
String
str
=
"61"
;
printComb
(
str
,
0
,
""
);
}
}
Back
|
FazBrowse Home
|
New Git URL