first init
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
# 1. 指定CMake最低版本要求
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
|
||||
# 2. 设置项目信息
|
||||
project(
|
||||
LeetCodeSolution # 项目名称(可根据题目修改)
|
||||
VERSION 1.0.0 # 项目版本
|
||||
DESCRIPTION "LeetCode Solution Template"
|
||||
LANGUAGES CXX # 支持的语言
|
||||
)
|
||||
|
||||
# 3. 设置C++标准和编译特性
|
||||
set(CMAKE_CXX_STANDARD 17) # 使用C++17标准
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON) # 必须支持指定标准
|
||||
set(CMAKE_CXX_EXTENSIONS OFF) # 禁用编译器特有扩展
|
||||
|
||||
# 4. 配置构建类型和编译选项
|
||||
if(NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE Debug) # 默认构建类型为Debug(便于调试)
|
||||
endif()
|
||||
|
||||
# 公共编译选项
|
||||
add_compile_options(
|
||||
"$<$<CONFIG:Release>:-O2>" # Release模式优化
|
||||
"$<$<CONFIG:Debug>:-g>" # Debug模式包含调试信息
|
||||
"$<$<CONFIG:Debug>:-O0>" # Debug模式不优化
|
||||
)
|
||||
|
||||
# 平台特定选项
|
||||
if(MSVC)
|
||||
add_compile_options(/W3) # MSVC: 警告等级3(刷题时不需要太严格)
|
||||
else()
|
||||
add_compile_options(-Wall -Wextra) # GCC/Clang: 常用警告
|
||||
endif()
|
||||
|
||||
# 5. 源文件收集
|
||||
file(GLOB_RECURSE SOURCES "src/*.cpp") # 递归收集源文件
|
||||
|
||||
# 6. 创建可执行文件目标
|
||||
add_executable(${PROJECT_NAME} ${SOURCES})
|
||||
|
||||
# 7. 自定义目标:运行程序
|
||||
add_custom_target(run
|
||||
COMMAND ${PROJECT_NAME}
|
||||
DEPENDS ${PROJECT_NAME}
|
||||
COMMENT "运行 ${PROJECT_NAME}..."
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
||||
113
array/1binary search/35search-insert-position/c++/src/main.cpp
Normal file
113
array/1binary search/35search-insert-position/c++/src/main.cpp
Normal file
@@ -0,0 +1,113 @@
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
using namespace std;
|
||||
|
||||
/**
|
||||
* LeetCode 解题模板
|
||||
*
|
||||
* 使用方法:
|
||||
* 1. 在 Solution 类中实现你的算法
|
||||
* 2. 在 main 函数中添加测试用例
|
||||
* 3. 编译运行:mkdir build && cd build && cmake .. && make && ./Solution
|
||||
*/
|
||||
class Solution
|
||||
{
|
||||
public:
|
||||
/**
|
||||
* 示例函数:搜索插入位置
|
||||
*
|
||||
* @param nums 排序数组
|
||||
* @param target 目标值
|
||||
* @return 目标值的索引,如果不存在则返回插入位置
|
||||
*/
|
||||
int searchInsert(vector<int> &nums, int target)
|
||||
{
|
||||
left = 0;
|
||||
right = nums.size() - 1;
|
||||
while (left < right)
|
||||
{
|
||||
int mid = (left + right) >> 1;
|
||||
if (nums[mid] == target)
|
||||
{
|
||||
return mid;
|
||||
}
|
||||
else if (nums[mid] < target)
|
||||
{
|
||||
left = mid + 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
right = mid;
|
||||
}
|
||||
}
|
||||
return target<=nums[left]?left:left+1;
|
||||
}
|
||||
|
||||
private:
|
||||
int left;
|
||||
int right;
|
||||
};
|
||||
|
||||
// 辅助函数:打印测试结果
|
||||
void printTestResult(const string &testName, bool passed)
|
||||
{
|
||||
cout << testName << ": " << (passed ? "pass" : "fail") << endl;
|
||||
}
|
||||
|
||||
// 辅助函数:比较两个整数
|
||||
bool assertEquals(int actual, int expected)
|
||||
{
|
||||
return actual == expected;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
Solution solution;
|
||||
|
||||
// 测试用例 1: 目标值存在于数组中
|
||||
{
|
||||
vector<int> nums = {1, 3, 5, 6};
|
||||
int target = 5;
|
||||
int result = solution.searchInsert(nums, target);
|
||||
int expected = 2;
|
||||
cout<< "result: "<<result<<", expected: "<<expected<<endl;
|
||||
printTestResult("test 1: target exists", assertEquals(result, expected));
|
||||
}
|
||||
|
||||
// 测试用例 2: 目标值不存在,应插入到中间位置
|
||||
{
|
||||
vector<int> nums = {1, 3, 5, 6};
|
||||
int target = 2;
|
||||
int result = solution.searchInsert(nums, target);
|
||||
int expected = 1;
|
||||
cout<< "result: "<<result<<", expected: "<<expected<<endl;
|
||||
printTestResult("test 2: insert middle", assertEquals(result, expected));
|
||||
}
|
||||
|
||||
// 测试用例 3: 目标值大于所有元素
|
||||
{
|
||||
vector<int> nums = {1, 3, 5, 6};
|
||||
int target = 7;
|
||||
int result = solution.searchInsert(nums, target);
|
||||
int expected = 4;
|
||||
cout<< "result: "<<result<<", expected: "<<expected<<endl;
|
||||
printTestResult("test 3: insert end", assertEquals(result, expected));
|
||||
}
|
||||
|
||||
// 测试用例 4: 目标值小于所有元素
|
||||
{
|
||||
vector<int> nums = {1, 3, 5, 6};
|
||||
int target = 0;
|
||||
int result = solution.searchInsert(nums, target);
|
||||
int expected = 0;
|
||||
cout<< "result: "<<result<<", expected: "<<expected<<endl;
|
||||
printTestResult("test 4: insert beginning", assertEquals(result, expected));
|
||||
}
|
||||
|
||||
cout << "\nAll test cases pass." << endl;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
/**
|
||||
* LeetCode 解题模板
|
||||
*
|
||||
* 使用方法:
|
||||
* 1. 在 Solution 类中实现你的算法
|
||||
* 2. 在 main 函数中添加测试用例
|
||||
* 3. 运行:kotlinc Solution.kt -include-runtime -d Solution.jar && java -jar Solution.jar
|
||||
* 或者使用 IDE(如 IntelliJ IDEA)直接运行
|
||||
*/
|
||||
|
||||
/**
|
||||
* 示例:搜索插入位置
|
||||
*
|
||||
* 给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。
|
||||
* 如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
|
||||
*
|
||||
* 请必须使用时间复杂度为 O(log n) 的算法。
|
||||
*/
|
||||
class Solution {
|
||||
/**
|
||||
* 搜索插入位置
|
||||
*
|
||||
* @param nums 排序数组
|
||||
* @param target 目标值
|
||||
* @return 目标值的索引,如果不存在则返回插入位置
|
||||
*/
|
||||
fun searchInsert(nums: IntArray, target: Int): Int {
|
||||
var left = 0
|
||||
var right = nums.size - 1
|
||||
|
||||
while (left <= right) {
|
||||
val mid = left + (right - left) / 2
|
||||
when {
|
||||
nums[mid] == target -> return mid
|
||||
nums[mid] < target -> left = mid + 1
|
||||
else -> right = mid - 1
|
||||
}
|
||||
}
|
||||
|
||||
return left
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 打印测试结果
|
||||
*/
|
||||
fun printTestResult(testName: String, passed: Boolean) {
|
||||
val status = if (passed) "pass" else "fail"
|
||||
println("$testName: $status")
|
||||
}
|
||||
|
||||
/**
|
||||
* 比较两个整数是否相等
|
||||
*/
|
||||
fun assertEquals(actual: Int, expected: Int): Boolean {
|
||||
return actual == expected
|
||||
}
|
||||
|
||||
fun main() {
|
||||
val solution = Solution()
|
||||
|
||||
// 测试用例 1: 目标值存在于数组中
|
||||
val nums1 = intArrayOf(1, 3, 5, 6)
|
||||
val target1 = 5
|
||||
val result1 = solution.searchInsert(nums1, target1)
|
||||
val expected1 = 2
|
||||
printTestResult("test case 1:target exists $target1", assertEquals(result1, expected1))
|
||||
|
||||
// 测试用例 2: 目标值不存在,应插入到中间位置
|
||||
val nums2 = intArrayOf(1, 3, 5, 6)
|
||||
val target2 = 2
|
||||
val result2 = solution.searchInsert(nums2, target2)
|
||||
val expected2 = 1
|
||||
printTestResult("test case 2:insert in middle $target2", assertEquals(result2, expected2))
|
||||
|
||||
// 测试用例 3: 目标值大于所有元素
|
||||
val nums3 = intArrayOf(1, 3, 5, 6)
|
||||
val target3 = 7
|
||||
val result3 = solution.searchInsert(nums3, target3)
|
||||
val expected3 = 4
|
||||
printTestResult("test case 3:insert at end $target3", assertEquals(result3, expected3))
|
||||
|
||||
// 测试用例 4: 目标值小于所有元素
|
||||
|
||||
val nums4 = intArrayOf(1, 3, 5, 6)
|
||||
val target4 = 0
|
||||
val result4 = solution.searchInsert(nums4, target4)
|
||||
val expected4 = 0
|
||||
printTestResult("test case 4:insert at start $target4", assertEquals(result4, expected4))
|
||||
|
||||
println("\n all test cases passed!")
|
||||
}
|
||||
|
||||
@@ -0,0 +1,143 @@
|
||||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"# [35. 搜索插入位置](https://leetcode.cn/problems/search-insert-position)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 题目描述\n",
|
||||
"\n",
|
||||
" 给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。\n",
|
||||
"\n",
|
||||
"请必须使用时间复杂度为 `O(log n)` 的算法。\n",
|
||||
"\n",
|
||||
"**示例 1:**\n",
|
||||
"\n",
|
||||
"```txt\n",
|
||||
"输入: nums = [1,3,5,6], target = 5\n",
|
||||
"输出: 2\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"**示例 2:**\n",
|
||||
"\n",
|
||||
"```txt\n",
|
||||
"输入: nums = [1,3,5,6], target = 2\n",
|
||||
"输出: 1\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"**示例 3:**\n",
|
||||
"\n",
|
||||
"```txt\n",
|
||||
"输入: nums = [1,3,5,6], target = 7\n",
|
||||
"输出: 4\n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"**提示:**\n",
|
||||
"\n",
|
||||
"- `1 <= nums.length <= 10^4`\n",
|
||||
"- `-10^4 <= nums[i] <= 10^4`\n",
|
||||
"- `nums` 为 **无重复元素** 的 **升序** 排列数组\n",
|
||||
"- `-10^4 <= target <= 10^4`"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"---\n",
|
||||
"\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 解答\n",
|
||||
"\n",
|
||||
" "
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"class Solution(object):\n",
|
||||
" def searchInsert(self, nums, target):\n",
|
||||
" \"\"\"\n",
|
||||
" :type nums: List[int]\n",
|
||||
" :type target: int\n",
|
||||
" :rtype: int\n",
|
||||
" \"\"\"\n",
|
||||
" left, right = 0, len(nums) - 1\n",
|
||||
" while left < right:\n",
|
||||
" mid = (left + right) // 2\n",
|
||||
" if target > nums[mid]:\n",
|
||||
" left = mid + 1\n",
|
||||
" elif target < nums[mid]:\n",
|
||||
" right = mid\n",
|
||||
" else:\n",
|
||||
" return mid \n",
|
||||
" return left if nums[left] >= target else left + 1 # 注意这里的返回值 注意溢出"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 8,
|
||||
"id": "a1e23e83",
|
||||
"metadata": {},
|
||||
"outputs": [
|
||||
{
|
||||
"name": "stdout",
|
||||
"output_type": "stream",
|
||||
"text": [
|
||||
"4\n"
|
||||
]
|
||||
}
|
||||
],
|
||||
"source": [
|
||||
"test_nums = [1,3,5,6]\n",
|
||||
"test_target = 7\n",
|
||||
"solution_1 = Solution()\n",
|
||||
"result_1 = solution_1.searchInsert(test_nums, test_target)\n",
|
||||
"print(result_1) # 2"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "92764a56",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": []
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": "Python 3",
|
||||
"language": "python",
|
||||
"name": "python3"
|
||||
},
|
||||
"language_info": {
|
||||
"codemirror_mode": {
|
||||
"name": "ipython",
|
||||
"version": 3
|
||||
},
|
||||
"file_extension": ".py",
|
||||
"mimetype": "text/x-python",
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.8.10"
|
||||
}
|
||||
},
|
||||
"nbformat": 5,
|
||||
"nbformat_minor": 10
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
"""
|
||||
LeetCode 解题模板
|
||||
|
||||
使用方法:
|
||||
1. 在 Solution 类中实现你的算法
|
||||
2. 在 if __name__ == "__main__" 中添加测试用例
|
||||
3. 运行:python solution.py
|
||||
"""
|
||||
|
||||
from typing import List
|
||||
|
||||
|
||||
class Solution:
|
||||
"""
|
||||
示例:搜索插入位置
|
||||
|
||||
给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。
|
||||
如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
|
||||
|
||||
请必须使用时间复杂度为 O(log n) 的算法。
|
||||
"""
|
||||
|
||||
def searchInsert(self, nums: List[int], target: int) -> int:
|
||||
"""
|
||||
搜索插入位置
|
||||
|
||||
Args:
|
||||
nums: 排序数组
|
||||
target: 目标值
|
||||
|
||||
Returns:
|
||||
目标值的索引,如果不存在则返回插入位置
|
||||
"""
|
||||
left, right = 0, len(nums) - 1
|
||||
|
||||
while left <= right:
|
||||
mid = left + (right - left) // 2
|
||||
if nums[mid] == target:
|
||||
return mid
|
||||
elif nums[mid] < target:
|
||||
left = mid + 1
|
||||
else:
|
||||
right = mid - 1
|
||||
|
||||
return left
|
||||
|
||||
|
||||
def print_test_result(test_name: str, passed: bool):
|
||||
"""打印测试结果"""
|
||||
status = "✓ 通过" if passed else "✗ 失败"
|
||||
print(f"{test_name}: {status}")
|
||||
|
||||
|
||||
def assert_equals(actual: int, expected: int) -> bool:
|
||||
"""比较两个整数是否相等"""
|
||||
return actual == expected
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
solution = Solution()
|
||||
|
||||
# 测试用例 1: 目标值存在于数组中
|
||||
nums1 = [1, 3, 5, 6]
|
||||
target1 = 5
|
||||
result1 = solution.searchInsert(nums1, target1)
|
||||
expected1 = 2
|
||||
print_test_result("测试用例 1: 目标值存在", assert_equals(result1, expected1))
|
||||
|
||||
# 测试用例 2: 目标值不存在,应插入到中间位置
|
||||
nums2 = [1, 3, 5, 6]
|
||||
target2 = 2
|
||||
result2 = solution.searchInsert(nums2, target2)
|
||||
expected2 = 1
|
||||
print_test_result("测试用例 2: 插入中间位置", assert_equals(result2, expected2))
|
||||
|
||||
# 测试用例 3: 目标值大于所有元素
|
||||
nums3 = [1, 3, 5, 6]
|
||||
target3 = 7
|
||||
result3 = solution.searchInsert(nums3, target3)
|
||||
expected3 = 4
|
||||
print_test_result("测试用例 3: 插入末尾", assert_equals(result3, expected3))
|
||||
|
||||
# 测试用例 4: 目标值小于所有元素
|
||||
nums4 = [1, 3, 5, 6]
|
||||
target4 = 0
|
||||
result4 = solution.searchInsert(nums4, target4)
|
||||
expected4 = 0
|
||||
print_test_result("测试用例 4: 插入开头", assert_equals(result4, expected4))
|
||||
|
||||
print("\n所有测试完成!")
|
||||
|
||||
Reference in New Issue
Block a user