LeetCode 旋转数组算法题解 All In One
2022/8/12 14:23:08
本文主要是介绍LeetCode 旋转数组算法题解 All In One,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
LeetCode 旋转数组算法题解 All In One
189. Rotate Array
/** Do not return anything, modify nums in-place instead. */ // solution 1:暴力破解:❌ Time Limit Exceeded // function rotate(nums: number[], k: number): void { // if(k === 0) { // // return; // } else { // const len = nums.length; // while(k > 0) { // // deep clone // let temp = []; // for(let i= 0; i< len; i++) { // // 破解对象引用 bug, 值引用 // temp[i] = nums[i]; // } // let end = temp[len - 1]; // // 循环队列 // for(let i = 1; i< len; i++) { // // 交换swap // nums[i] = temp[i - 1]; // } // nums[0] = end; // // console.log(`nums =`, nums); // k -= 1; // } // } // // no return, in-place 就地交换 // }; // solution 2: in-place 就地交换算法 ✅ function reverse(i: number, j: number, nums: number[]): void { while(i < j){ [ nums[i], nums[j] ] = [ nums[j], nums[i] ]; // 两两互换 i++; j--; } }; function rotate(nums: number[], k: number): void { k %= nums.length; // 如果 k 大于 nums.length 则完成一个循环,这意味着它将保持不变,我们必须进行剩余移位 // reverse all reverse(0, nums.length-1, nums); // reverse first part reverse(0, k - 1, nums) // reverse second part reverse(k, nums.length-1, nums); };
https://leetcode.com/problems/rotate-array/
https://leetcode.cn/problems/rotate-array/
796. Rotate String
in-place 就地交换算法
https://leetcode.com/problems/rotate-string/
refs
©xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载
这篇关于LeetCode 旋转数组算法题解 All In One的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-11国产医疗级心电ECG采集处理模块
- 2025-01-10Rakuten 乐天积分系统从 Cassandra 到 TiDB 的选型与实战
- 2025-01-09CMS内容管理系统是什么?如何选择适合你的平台?
- 2025-01-08CCPM如何缩短项目周期并降低风险?
- 2025-01-08Omnivore 替代品 Readeck 安装与使用教程
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南