File tree 3 files changed +54
-20
lines changed
3 files changed +54
-20
lines changed Original file line number Diff line number Diff line change 1
1
public class Solution {
2
2
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 );
19
26
}
20
- sb .append (count );
21
- sb .append (prev );
22
- result = sb .toString ();
27
+ i ++;
23
28
}
24
- return result ;
29
+ sb .append (count );
30
+ sb .append (c );
31
+
32
+ return sb .toString ();
25
33
}
26
34
}
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments