LeetCode113 Path Sum II

详细见:leetcode.com/problems/path-sum-ii


Java Solution: github

package leetcode;

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;

import tools.TreeNode辅助.TreeNode;

public class P113_PathSumII {
	public static void main(String[] args) {
		
	}
	/*
	 * 	AC
	 * 	3 ms
	 */
	static class Solution {
		List<List<Integer>> ans = new LinkedList<>();
		ArrayList<Integer> path = new ArrayList<>();
	    public List<List<Integer>> pathSum(TreeNode root, int sum) {
	    	if (root == null) {
	    		return ans;
	    	}
	    	search(root, sum, 0);
	        return ans;
	    }
		private void search(TreeNode root, int sum, int now) {
			if (root.left == null && root.right == null && now + root.val == sum) {
				List<Integer> temp = new LinkedList<>();
				for (int i = 0; i < path.size();i ++) {
					temp.add(path.get(i));
				}
				ans.add(temp);
				return;
			}
			if (root.left != null) {
				path.add(root.val);
				search(root, sum, now + root.val);
				path.remove(path.size() - 1);
			}
			if (root.right != null) {
				path.add(root.val);
				search(root, sum, now + root.val);
				path.remove(path.size() - 1);
			}
		}
	}
}


C Solution: github

/*
    url: leetcode.com/problems/path-sum-ii
    AC 9ms 13.33% 
*/

#include <stdio.h>
#include <stdlib.h>

struct TreeNode {
    int val;
    struct TreeNode *left;
    struct TreeNode *right;
};

typedef int bool;

typedef struct TreeNode stn;
typedef struct TreeNode * ptn;


ptn tn_init(int val) {
    ptn n = (ptn) malloc(sizeof(stn));
    n->val = val;
    n->left = NULL;
    n->right = NULL;
    return n;
}

typedef int* T;
typedef struct al sal;
typedef struct al * pal;

struct al {
    int capacity;
    int size;
    T* arr;
};

pal al_init(int capacity) {
    pal l = (pal) malloc(sizeof(sal));
    if (capacity < 1) return NULL;
    l->arr = (T*) malloc(sizeof(T) * capacity);
    l->capacity = capacity;
    l->size = 0;
    return l;
}

void al_expand_capacity(pal l) {
    T* new_arr = (T*) malloc(sizeof(T) * (l->capacity * 2 + 1));
    int i = 0;
    for (i = 0; i < l->capacity; i ++)
        new_arr[i] = l->arr[i];
    free(l->arr);
    l->arr = new_arr;
    l->capacity = l->capacity * 2 + 1;
}

void al_add_last(pal l, T v) {
    if (l->capacity == l->size) al_expand_capacity(l);
    l->arr[l->size] = v;
    l->size ++;
}

void al_free_all(pal l) {
    free(l->arr);
    free(l);
}

void swap_al(pal* l1, pal* l2) {
    pal t = *l1;
    *l1 = *l2;
    *l2 = t;
}

int* arr_copy(int* r, int ri) {
    int i = 0, *c = (int*) malloc(sizeof(int)*ri);
    for (i = 0; i < ri; i ++)
        c[i] = r[i];
    return c;

}

T* al_convert_to_array_free_l(pal l) {
    T* arr = l->arr;
    free(l);
    return arr;
}


int* arr_con(int val) {
    int *c = (int*) malloc(sizeof(int));
    c[0] =val;
    return c;
}

void search(ptn n, int c, int s, int* sign, int* r, int ri, pal l, pal ln) {
    if (*sign) return;
    if (n == NULL) return;
    r[ri] = n->val;
    search(n->left, c+n->val, s, sign, r, ri+1, l, ln);
    search(n->right, c+n->val, s, sign, r, ri+1, l, ln);
    if (n->left == NULL && n->right == NULL && c+n->val == s) {
        al_add_last(l, arr_copy(r, ri+1));
        al_add_last(ln, arr_con(ri+1));
    }
}

int** pathSum(struct TreeNode* n, int s, int** cn, int* rn) {
    int c = 0, sign = 0, i = 0;
    int* rec = (int*) malloc(sizeof(int) * 2048);
    pal l = al_init(16);
    pal ln = al_init(16);
    search(n, 0, s, &sign, rec, 0, l, ln);
    *cn = (int*) malloc(sizeof(int) * ln->size);
    for (i = 0; i < ln->size; i ++) {
        (*cn)[i] = ln->arr[i][0];
        free(ln->arr[i]);
    }
    free(ln->arr);
    free(ln);
    *rn = l->size;
    free(rec);
    return al_convert_to_array_free_l(l);
}


Python Solution: github

#coding=utf-8

'''
    url: leetcode.com/problems/path-sum-ii
    @author:     zxwtry
    @email:      zxwtry@qq.com
    @date:       2017年4月30日
    @details:    Solution: 102ms 24.53%
'''

class TreeNode(object):
    def __init__(self, x):
        self.val = x
        self.left = None
        self.right = None

class Solution(object):
    def search(self, n, s, c, a, t):
        if n == None: return
        t.append(n.val)
        if n.left == None and n.right == None:
            if s == c + n.val: a.append(list(t))
        self.search(n.left, s, c+n.val, a, t)
        self.search(n.right, s, c+n.val, a, t)
        t.pop()
        
    def pathSum(self, n, s):
        """
        :type n: TreeNode
        :type s: int
        :rtype: List[List[int]]
        """
        a, t = [], []
        self.search(n, s, 0, a, t)
        return a
        


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值