JavaScript 面试备忘单 - 第 2 部分
常见 LeetCode 模式
// Two Pointers - In-place array modification const modifyArray = (arr) => { let writePointer = 0; for (let readPointer = 0; readPointer < arr.length; readPointer++) { if (/* condition */) { [arr[writePointer], arr[readPointer]] = [arr[readPointer], arr[writePointer]]; writePointer++; } } return writePointer; // Often returns new length or modified position }; // Fast and Slow Pointers (Floyd's Cycle Detection) const hasCycle = (head) => { let slow = head, fast = head; while (fast && fast.next) { slow = slow.next; fast = fast.next.next; if (slow === fast) return true; } return false; }; // Sliding Window - Fixed Size const fixedSlidingWindow = (arr, k) => { let sum = 0; // Initialize first window for (let i = 0; i < k; i++) { sum += arr[i]; } let maxSum = sum; // Slide window for (let i = k; i < arr.length; i++) { sum = sum - arr[i - k] + arr[i]; maxSum = Math.max(maxSum, sum); } return maxSum; }; // Sliding Window - Variable Size const varSlidingWindow = (arr, target) => { let start = 0, sum = 0, minLen = Infinity; for (let end = 0; end < arr.length; end++) { sum += arr[end]; while (sum >= target) { minLen = Math.min(minLen, end - start + 1); sum -= arr[start]; start++; } } return minLen === Infinity ? 0 : minLen; }; // BFS - Level Order Traversal const levelOrder = (root) => { if (!root) return []; const result = []; const queue = [root]; while (queue.length) { const levelSize = queue.length; const currentLevel = []; for (let i = 0; i < levelSize; i++) { const node = queue.shift(); currentLevel.push(node.val); if (node.left) queue.push(node.left); if (node.right) queue.push(node.right); } result.push(currentLevel); } return result; }; // DFS - Recursive Template const dfs = (root) => { const result = []; const traverse = (node) => { if (!node) return; // Pre-order result.push(node.val); traverse(node.left); // In-order would be here traverse(node.right); // Post-order would be here }; traverse(root); return result; }; // Backtracking Template const backtrack = (nums) => { const result = []; const bt = (path, choices) => { if (/* ending condition */) { result.push([...path]); return; } for (let i = 0; i < choices.length; i++) { // Make choice path.push(choices[i]); // Recurse bt(path, /* remaining choices */); // Undo choice path.pop(); } }; bt([], nums); return result; }; // Dynamic Programming - Bottom Up Template const dpBottomUp = (n) => { const dp = new Array(n + 1).fill(0); dp[0] = 1; // Base case for (let i = 1; i <= n; i++) { for (let j = 0; j < i; j++) { dp[i] += dp[j] * /* some calculation */; } } return dp[n]; }; // Dynamic Programming - Top Down Template const dpTopDown = (n) => { const memo = new Map(); const dp = (n) => { if (n <= 1) return 1; if (memo.has(n)) return memo.get(n); let result = 0; for (let i = 0; i < n; i++) { result += dp(i) * /* some calculation */; } memo.set(n, result); return result; }; return dp(n); }; // Monotonic Stack Template const monotonicStack = (arr) => { const stack = []; // [index, value] const result = new Array(arr.length).fill(-1); for (let i = 0; i < arr.length; i++) { while (stack.length && stack[stack.length - 1][1] > arr[i]) { const [prevIndex, _] = stack.pop(); result[prevIndex] = i - prevIndex; } stack.push([i, arr[i]]); } return result; }; // Prefix Sum const prefixSum = (arr) => { const prefix = [0]; for (let i = 0; i < arr.length; i++) { prefix.push(prefix[prefix.length - 1] + arr[i]); } // Sum of range [i, j] = prefix[j + 1] - prefix[i] return prefix; }; // Binary Search Variations const binarySearchLeftmost = (arr, target) => { let left = 0, right = arr.length; while (left < right) { const mid = Math.floor((left + right) / 2); if (arr[mid] < target) left = mid + 1; else right = mid; } return left; }; const binarySearchRightmost = (arr, target) => { let left = 0, right = arr.length; while (left < right) { const mid = Math.floor((left + right) / 2); if (arr[mid] <= target) left = mid + 1; else right = mid; } return left - 1; }; // Trie Operations class TrieNode { constructor() { this.children = new Map(); this.isEndOfWord = false; } } class Trie { constructor() { this.root = new TrieNode(); } insert(word) { let node = this.root; for (const char of word) { if (!node.children.has(char)) { node.children.set(char, new TrieNode()); } node = node.children.get(char); } node.isEndOfWord = true; } search(word) { let node = this.root; for (const char of word) { if (!node.children.has(char)) return false; node = node.children.get(char); } return node.isEndOfWord; } startsWith(prefix) { let node = this.root; for (const char of prefix) { if (!node.children.has(char)) return false; node = node.children.get(char); } return true; } } // Union Find (Disjoint Set) class UnionFind { constructor(n) { this.parent = Array.from({length: n}, (_, i) => i); this.rank = new Array(n).fill(0); } find(x) { if (this.parent[x] !== x) { this.parent[x] = this.find(this.parent[x]); // Path compression } return this.parent[x]; } union(x, y) { let rootX = this.find(x); let rootY = this.find(y); if (rootX !== rootY) { if (this.rank[rootX] < this.rank[rootY]) { [rootX, rootY] = [rootY, rootX]; } this.parent[rootY] = rootX; if (this.rank[rootX] === this.rank[rootY]) { this.rank[rootX]++; } } } }
常见的时间/空间复杂度模式
// O(1) - Constant Array.push(), Array.pop(), Map.set(), Map.get() // O(log n) - Logarithmic Binary Search, Balanced BST operations // O(n) - Linear Array traversal, Linear Search // O(n log n) - Linearithmic Efficient sorting (Array.sort()) // O(n²) - Quadratic Nested loops, Simple sorting algorithms // O(2ⁿ) - Exponential Recursive solutions without memoization
以上是JavaScript 面试备忘单 - 第 2 部分的详细内容。更多信息请关注PHP中文网其他相关文章!

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

JavaScript是现代Web开发的基石,它的主要功能包括事件驱动编程、动态内容生成和异步编程。1)事件驱动编程允许网页根据用户操作动态变化。2)动态内容生成使得页面内容可以根据条件调整。3)异步编程确保用户界面不被阻塞。JavaScript广泛应用于网页交互、单页面应用和服务器端开发,极大地提升了用户体验和跨平台开发的灵活性。

Python和JavaScript开发者的薪资没有绝对的高低,具体取决于技能和行业需求。1.Python在数据科学和机器学习领域可能薪资更高。2.JavaScript在前端和全栈开发中需求大,薪资也可观。3.影响因素包括经验、地理位置、公司规模和特定技能。

实现视差滚动和元素动画效果的探讨本文将探讨如何实现类似资生堂官网(https://www.shiseido.co.jp/sb/wonderland/)中�...

学习JavaScript不难,但有挑战。1)理解基础概念如变量、数据类型、函数等。2)掌握异步编程,通过事件循环实现。3)使用DOM操作和Promise处理异步请求。4)避免常见错误,使用调试技巧。5)优化性能,遵循最佳实践。

JavaScript的最新趋势包括TypeScript的崛起、现代框架和库的流行以及WebAssembly的应用。未来前景涵盖更强大的类型系统、服务器端JavaScript的发展、人工智能和机器学习的扩展以及物联网和边缘计算的潜力。

如何在JavaScript中将具有相同ID的数组元素合并到一个对象中?在处理数据时,我们常常会遇到需要将具有相同ID�...

探索前端中类似VSCode的面板拖拽调整功能的实现在前端开发中,如何实现类似于VSCode...
