书栈网 · BookStack 本次搜索耗时 0.021 秒,为您找到 328 个相关结果.
  • Sqrt(x)

    Sqrt(x) 描述 分析 代码 相关题目 Sqrt(x) 描述 Implement int sqrt(int x) . Compute and return the square root of x . 分析 二分查找 代码 // LeetCode, Sqrt(x) // 二分查找 // 时间复杂度O(logn),...
  • String

    一、字符串 二、目录 一、字符串 关于字符串的题目,在面试和笔试中都有很多出现。主要包括以下几个方面: 大数问题。 字符串的翻转(全部翻转、部分翻转),拼接等问题。 字符串的模式匹配,找重复子串、公共前缀、回文问题。 以上几个方面的题目在剑指offer以及leetcode动态规划方面都有出现过。本部分主要整理了几个比较典型常考的题目。 ...
  • Linked List Cycle

    Linked List Cycle Question 題解 - 快慢指標 C++ Java 源碼分析 複雜度分析 Reference Linked List Cycle Question leetcode: Linked List Cycle | LeetCode OJ lintcode: (102) Linked List C...
  • First Missing Positive

    First Missing Positive Question 題解 C++ 源碼分析 複雜度分析 Reference First Missing Positive Question leetcode: First Missing Positive | LeetCode OJ lintcode: (189) First Missi...
  • 程序员如何准备面试中的算法

    程序员如何准备面试中的算法 备战面试中算法的五个步骤 1、掌握一门编程语言 2、过一遍微软面试100题系列 3、苦补数据结构基础 4、看算法导论 5、刷leetcode或cc150或编程艺术系列 后记 程序员如何准备面试中的算法 备战面试中算法的五个步骤 对于立志进一线互联网公司,同时不满足于一辈子干纯业务应用开发,希望在后端做点事...
  • Swap Nodes in Pairs

    Swap Nodes in Pairs Question Problem Statement Example Challenge 题解1 - Iteration Java 源码分析 复杂度分析 题解2 - Recursion Java 源码分析 复杂度分析 Swap Nodes in Pairs Question lee...
  • Two Strings Are Anagrams

    Two Strings Are Anagrams Question 題解1 - hashmap 統計字頻 C++ 源碼分析 複雜度分析 題解2 - 排序字串 C++ 源碼分析 複雜度分析 Reference Two Strings Are Anagrams Question CC150: (158) Two Strings ...
  • Introduction

    Introduction - 简介 Reference - 参考 Contributing - 贡献 Way to Algorithm - 算法之路 Algorithm Tutorial and Source Code - 算法教程与源码 Introduction - 简介 本书围绕大学生计算机算法,收集和整理了比较常见的算法与数...
  • Add Two Numbers

    Add Two Numbers Question Problem Statement Example 题解 Python C++ Java 源码分析 复杂度分析 Reference Add Two Numbers Question leetcode: Add Two Numbers | LeetCode OJ lintco...
  • Construct Binary Tree from Preorder and Inorder Traversal

    Construct Binary Tree from Preorder and Inorder Traversal Question 题解 Java 源码分析 复杂度分析 Reference Construct Binary Tree from Preorder and Inorder Traversal Question leet...