Skip to content

Commit 5537069

Browse files
committed
update
1 parent 8ef6aa0 commit 5537069

File tree

3 files changed

+54
-20
lines changed

3 files changed

+54
-20
lines changed

.DS_Store

-6 KB
Binary file not shown.

38_countAndSay.java

+28-20
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,34 @@
11
public class Solution {
22
public String countAndSay(int n) {
3-
if(n<=0) return null;
4-
String result = "1";
5-
if(n==1) return result;
6-
for(int i = 2; i<= n; i++){
7-
StringBuffer sb = new StringBuffer();
8-
char prev = result.charAt(0);
9-
int count = 1;
10-
for(int j = 1; j < result.length(); j++){
11-
char next = result.charAt(j);
12-
if(next == prev) count++;
13-
else{
14-
sb.append(count);
15-
sb.append(prev);
16-
prev = next;
17-
count = 1;
18-
}
3+
String s = "1";
4+
for(int i = 1; i<n;i++){
5+
s = helper(s);
6+
}
7+
return s;
8+
}
9+
10+
public String helper(String s){
11+
StringBuffer sb = new StringBuffer();
12+
13+
int count = 1;
14+
char c = s.charAt(0);
15+
16+
int i = 1;
17+
while(i< s.length()){
18+
if(s.charAt(i) == c){
19+
count++;
20+
}
21+
else{
22+
sb.append(count);
23+
sb.append(c);
24+
count = 1;
25+
c = s.charAt(i);
1926
}
20-
sb.append(count);
21-
sb.append(prev);
22-
result = sb.toString();
27+
i++;
2328
}
24-
return result;
29+
sb.append(count);
30+
sb.append(c);
31+
32+
return sb.toString();
2533
}
2634
}

Android/257_binaryTreePath.java

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* public class TreeNode {
4+
* int val;
5+
* TreeNode left;
6+
* TreeNode right;
7+
* TreeNode(int x) { val = x; }
8+
* }
9+
*/
10+
public class Solution {
11+
public List<String> binaryTreePaths(TreeNode root) {
12+
List<String> result = new ArrayList<String>();
13+
dfs(root, "", result);
14+
return result;
15+
}
16+
17+
public void dfs(TreeNode node, String str, List<String> result){
18+
if(node == null) return;
19+
if(str.length() == 0) str = str+node.val;
20+
else str = str+"->"+node.val;
21+
22+
if(node.left == null && node.right == null) result.add(str);
23+
dfs(node.left,str,result);
24+
dfs(node.right,str,result);
25+
}
26+
}

0 commit comments

Comments
 (0)