forked from DengWangBao/Leetcode-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUTFValidation.java
More file actions
31 lines (27 loc) · 769 Bytes
/
UTFValidation.java
File metadata and controls
31 lines (27 loc) · 769 Bytes
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
public class UTFValidation {
public boolean validUtf8(int[] data) {
for (int i = 0; i < data.length; ) {
int n = data[i], size;
if (n >>> 7 == 0) {
size = 1;
} else if (n >>> 5 == 0x6) {
size = 2;
} else if (n >>> 4 == 0xe) {
size = 3;
} else if (n >>> 3 == 0x1e) {
size = 4;
} else {
return false;
}
if (i + size > data.length) {
return false;
}
for (i++, size--; size > 0; size--, i++) {
if (data[i] >>> 6 != 2) {
return false;
}
}
}
return true;
}
}