[小玄的刷题日记]《LeetCode零基础指南》(第5讲) 指针

简介: [小玄的刷题日记]《LeetCode零基础指南》(第5讲) 指针

1470. 重新排列数组 - 力扣(LeetCode) (leetcode-cn.com)1.png

int* shuffle(int* nums, intnumsSize, intn, int* returnSize){
inti = 0;
int* ret = (int*)malloc(sizeof(int) * numsSize);
for(i = 0;i < numsSize;i++)
    {
if(i&1)
ret[i] = nums[n + i / 2];
elseret[i] = nums[(i + 1)/2];
    }
    *returnSize = numsSize;
returnret;
}

1929. 数组串联 - 力扣(LeetCode) (leetcode-cn.com)2.png

int* getConcatenation(int* nums, intnumsSize, int* returnSize){
inti = 0;
int* ret = (int*)malloc(sizeof(int) * numsSize * 2);
for(i = 0;i < numsSize;i++)
    {
ret[i +numsSize] = ret[i] = nums[i];
    }
    *returnSize = 2 * numsSize;
returnret;
}

1920. 基于排列构建数组 - 力扣(LeetCode) (leetcode-cn.com)

3.png

1920. 基于排列构建数组 - 力扣(LeetCode) (leetcode-cn.com)

int* buildArray(int* nums, intnumsSize, int* returnSize){
inti = 0;
int* ret = (int*)malloc(sizeof(int) * numsSize);
for(i = 0;i < numsSize;i++)
    {
ret[i] = nums[nums[i]];
    }
    *returnSize = numsSize;
returnret;
}

1480. 一维数组的动态和 - 力扣(LeetCode) (leetcode-cn.com)4.png

1480. 一维数组的动态和 - 力扣(LeetCode) (leetcode-cn.com)

int* runningSum(int* nums, intnumsSize, int* returnSize){
inti = 0;
int* ret = (int*)malloc(sizeof(int) * numsSize);
for(i = 0;i < numsSize;i++)
    {
intj = i;
intsum = 0;
for(j = 0;j <= i;j++)
        {
sum += nums[j];
        }
ret[i] = sum;
    }
    *returnSize = numsSize;
returnret;
}

剑指 Offer 58 - II. 左旋转字符串 - 力扣(LeetCode) (leetcode-cn.com)5.png

char* reverseLeftWords(char* s, intk){
inti;
intn = strlen(s);
char *ret = (char *)malloc( (n + 1) * sizeof(char) );    // (1)
for(i = 0; i < n; ++i) {
ret[i] = s[(i + k) % n];                             // (2)
    }
ret[n] = '\0';                                           // (3)
returnret;
}

1108. IP 地址无效化 - 力扣(LeetCode) (leetcode-cn.com)6.png

char * defangIPaddr(char * address){
char* ret = (char*)malloc(1000 * sizeof(char));
intreturnSize = 0;
inti = 0;
for(i = 0;address[i];i++)
    {
if(address[i] == '.')
        {
ret[ returnSize++] = '[';
ret[ returnSize++] = '.';
ret[ returnSize++] = ']';
        }
elseret[returnSize++] = address[i];
    }
ret[returnSize] = '\0';
returnret;
}

Loading Question... - 力扣(LeetCode) (leetcode-cn.com)7.png

char* replaceSpace(char* s){
char* ret = (char*)malloc(300001 * sizeof(char));
intreturnSize = 0;
inti = 0;
for(i = 0;s[i];i++)
    {
if(s[i] == ' ')
        {
ret[returnSize ++] = '%%';
ret[returnSize ++] = '2';
ret[returnSize ++] = '0';
        }
elseret[returnSize ++] = s[i];
    }
ret[ returnSize] ='\0';
returnret;
}

1365. 有多少小于当前数字的数字 - 力扣(LeetCode) (leetcode-cn.com)8.png

int* smallerNumbersThanCurrent(int* nums, intnumsSize, int* returnSize){
inti = 0;
int* ret = (int*)malloc(numsSize * sizeof(int));
for(i = 0;i < numsSize;i++)
    {
intcount = 0;
for(intj = 0;j < numsSize;j++)
        {
if(nums[i] > nums[j])
count++;
        }
ret[i] = count;
    }
    *returnSize = numsSize;
returnret;
}

1389. 按既定顺序创建目标数组 - 力扣(LeetCode) (leetcode-cn.com)9.png

int* createTargetArray(int* nums, intnumsSize, int* index, intindexSize, int* returnSize){
intlen = 0;
inti,j,ins,idx;
int* ret = (int*)malloc(sizeof(int) * numsSize);
for(i = 0;i < numsSize;i++)
    {
idx = index[i];
ins = nums[i];
for(j = len;j > idx;--j)
        {
ret[j] = ret[j-1];
        }
ret[idx] = ins;
        ++len;
    }
    *returnSize = len;
returnret;
}

目录
相关文章
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
3月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
113 2
|
18天前
|
机器学习/深度学习 人工智能 自然语言处理
280页PDF,全方位评估OpenAI o1,Leetcode刷题准确率竟这么高
【10月更文挑战第24天】近年来,OpenAI的o1模型在大型语言模型(LLMs)中脱颖而出,展现出卓越的推理能力和知识整合能力。基于Transformer架构,o1模型采用了链式思维和强化学习等先进技术,显著提升了其在编程竞赛、医学影像报告生成、数学问题解决、自然语言推理和芯片设计等领域的表现。本文将全面评估o1模型的性能及其对AI研究和应用的潜在影响。
16 1
|
2月前
|
数据采集 负载均衡 安全
LeetCode刷题 多线程编程九则 | 1188. 设计有限阻塞队列 1242. 多线程网页爬虫 1279. 红绿灯路口
本文提供了多个多线程编程问题的解决方案,包括设计有限阻塞队列、多线程网页爬虫、红绿灯路口等,每个问题都给出了至少一种实现方法,涵盖了互斥锁、条件变量、信号量等线程同步机制的使用。
LeetCode刷题 多线程编程九则 | 1188. 设计有限阻塞队列 1242. 多线程网页爬虫 1279. 红绿灯路口
|
3月前
|
算法 Python
【Leetcode刷题Python】 LeetCode 2038. 如果相邻两个颜色均相同则删除当前颜色
本文介绍了LeetCode 2038题的解法,题目要求在一个由'A'和'B'组成的字符串中,按照特定规则轮流删除颜色片段,判断Alice是否能够获胜,并提供了Python的实现代码。
50 3
|
3月前
|
Python
【Leetcode刷题Python】50. Pow(x, n)
本文介绍了LeetCode第50题"Pow(x, n)"的解法,题目要求实现计算x的n次幂的函数,文章提供了递归分治法的详细解析和Python实现代码。
26 1
|
3月前
|
Python
【Leetcode刷题Python】LeetCode 478. 在圆内随机生成点
本文介绍了LeetCode 478题的解法,题目要求在给定圆的半径和圆心位置的情况下实现在圆内均匀随机生成点的功能,并提供了Python的实现代码。
30 1
|
3月前
|
算法 Python
【Leetcode刷题Python】295. 数据流的中位数
本文介绍了一种使用Python实现的数据结构,用以支持数据流中添加整数并返回当前所有元素的中位数,通过排序列表来计算中位数。
25 1
|
3月前
|
算法 Python
【Leetcode刷题Python】73. 矩阵置零
本文介绍了LeetCode第73题的解法,题目要求在给定矩阵中将所有值为0的元素所在的行和列全部置为0,并提供了一种原地算法的Python实现。
32 0
【Leetcode刷题Python】73. 矩阵置零
|
3月前
|
Python
【Leetcode刷题Python】1467. 两个盒子中球的颜色数相同的概率
本文介绍了LeetCode第50题"Pow(x, n)"的解法,题目要求实现计算x的n次幂的函数,文章提供了递归分治法的详细解析和Python实现代码。
39 0