1313. 解压缩编码列表 - c
Posted luckygxf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1313. 解压缩编码列表 - c相关的知识,希望对你有一定的参考价值。
/** * Note: The returned array must be malloced, assume caller calls free(). */ int* decompressRLElist(int* nums, int numsSize, int* returnSize){ if (nums == NULL) return NULL; *returnSize = 0; for (int i = 0; i < numsSize; i += 2) (*returnSize) += nums[i]; int tempSize = (*returnSize); //printf("%d", tempSize); int *res = malloc(sizeof(int) * tempSize); int resIndex = 0; for (int i = 0; i < numsSize; i += 2) { for (int j = 0; j < nums[i]; j++) { res[resIndex] = nums[i + 1]; resIndex ++; } } return res; }
以上是关于1313. 解压缩编码列表 - c的主要内容,如果未能解决你的问题,请参考以下文章