FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
coding-Interview/PrefixSuffixSearch.java at master · arjunmullick/coding-Interview · GitHub
arjunmullick
/
coding-Interview
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
3
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
coding-Interview
/
PrefixSuffixSearch.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
109 lines (91 loc) · 3.24 KB
Breadcrumbs
coding-Interview
/
PrefixSuffixSearch.java
Copy path
File metadata and controls
109 lines (91 loc) · 3.24 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package
com
.
leetcode
;
import
java
.
util
.
HashMap
;
import
java
.
util
.
HashSet
;
public
class
PrefixSuffixSearch
{
//https://leetcode.com/problems/prefix-and-suffix-search/
class
WordFilter
{
Trie
trie
;
public
WordFilter
(
String
[]
words
) {
this
.
trie
=
new
Trie
();
for
(
int
i
=
0
;
i
<
words
.
length
;
i
++){
trie
.
insert
(
words
[
i
],
i
);
}
}
public
int
f
(
String
prefix
,
String
suffix
) {
HashSet
<
Integer
>
prefixIndex
=
trie
.
existPrefix
(
prefix
);
HashSet
<
Integer
>
suffixIndex
=
trie
.
existSuffix
(
suffix
);
int
max
= -
1
;
for
(
int
n
:
prefixIndex
){
if
(
n
>
max
&&
suffixIndex
.
contains
(
n
))
max
=
Math
.
max
(
n
,
max
);
}
return
max
;
}
}
class
Trie
{
TrieNode
rootPrefix
;
TrieNode
rootSuffix
;
public
Trie
(){
this
.
rootPrefix
=
new
TrieNode
();
this
.
rootSuffix
=
new
TrieNode
();
}
public
void
insert
(
String
word
,
int
index
){
TrieNode
nodePrefix
=
rootPrefix
;
TrieNode
nodeSuffix
=
rootSuffix
;
for
(
char
ch
:
word
.
toCharArray
()){
TrieNode
next
=
nodePrefix
.
childs
.
getOrDefault
(
ch
,
new
TrieNode
());
next
.
ch
=
ch
;
HashSet
<
Integer
>
indexs
=
next
.
index
;
indexs
.
add
(
index
);
nodePrefix
.
childs
.
put
(
ch
,
next
);
nodePrefix
=
next
;
}
nodePrefix
.
isWord
=
true
;
for
(
int
i
=
word
.
length
() -
1
;
i
>=
0
;
i
--){
char
ch
=
word
.
charAt
(
i
);
TrieNode
next
=
nodeSuffix
.
childs
.
getOrDefault
(
ch
,
new
TrieNode
());
next
.
ch
=
ch
;
HashSet
<
Integer
>
indexs
=
next
.
index
;
indexs
.
add
(
index
);
nodeSuffix
.
childs
.
put
(
ch
,
next
);
nodeSuffix
=
next
;
}
nodeSuffix
.
isWord
=
true
;
}
public
HashSet
<
Integer
>
existPrefix
(
String
prefix
){
TrieNode
nodePrefix
=
rootPrefix
;
for
(
char
ch
:
prefix
.
toCharArray
()){
TrieNode
next
=
nodePrefix
.
childs
.
get
(
ch
);
if
(
next
==
null
)
return
new
HashSet
<>();
nodePrefix
=
next
;
}
return
nodePrefix
.
index
;
}
public
HashSet
<
Integer
>
existSuffix
(
String
suffix
){
TrieNode
nodeSuffix
=
rootSuffix
;
for
(
int
i
=
suffix
.
length
()-
1
;
i
>=
0
;
i
--){
char
ch
=
suffix
.
charAt
(
i
);
TrieNode
next
=
nodeSuffix
.
childs
.
get
(
ch
);
if
(
next
==
null
)
return
new
HashSet
<>();
nodeSuffix
=
next
;
}
return
nodeSuffix
.
index
;
}
}
class
TrieNode
{
char
ch
;
HashMap
<
Character
,
TrieNode
>
childs
;
boolean
isWord
;
HashSet
<
Integer
>
index
;
//index of inserted word
public
TrieNode
(){
this
.
childs
=
new
HashMap
<>();
this
.
index
=
new
HashSet
();
//this.index = new PriorityQueue<>((a,b) -> (b-a));//max heap
}
}
/**
* Your WordFilter object will be instantiated and called as such:
* WordFilter obj = new WordFilter(words);
* int param_1 = obj.f(prefix,suffix);
*/
}
Back
|
FazBrowse Home
|
New Git URL