/**
 * struct TreeNode {
 *	int val;
 *	struct TreeNode *left;
 *	struct TreeNode *right;
 * };
 */
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param root TreeNode类 
 * @return int整型一维数组
 * @return int* returnSize 返回数组行数
 */
int TreeSize(struct TreeNode* root)
 {
    if(root==NULL)
        return 0;
    return TreeSize(root->left) + TreeSize(root->right)+1;
 }
 void In_Order(struct TreeNode*root,int*i,int*arr)
 {
    if(root==NULL)
          return;
    In_Order(root->left,i,arr);
    arr[(*i)++] = root->val;
    In_Order(root->right,i,arr);
 }
int* inorderTraversal(struct TreeNode* root, int* returnSize ) {
    // write code here
    *returnSize = TreeSize(root);
   int*arr = (int*)malloc(sizeof(int)*(*returnSize));
   int i = 0;
   In_Order(root,&i,arr);
   return arr;
}