介绍
在本实验中,我们将创建一个 C++ 程序来查找旋转排序向量中的最小元素。一个排序向量可以在某个未知的枢轴元素处进行旋转。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
cpp(("C++")) -.-> cpp/BasicsGroup(["Basics"])
cpp(("C++")) -.-> cpp/ControlFlowGroup(["Control Flow"])
cpp(("C++")) -.-> cpp/FunctionsGroup(["Functions"])
cpp(("C++")) -.-> cpp/IOandFileHandlingGroup(["I/O and File Handling"])
cpp(("C++")) -.-> cpp/StandardLibraryGroup(["Standard Library"])
cpp(("C++")) -.-> cpp/SyntaxandStyleGroup(["Syntax and Style"])
cpp/BasicsGroup -.-> cpp/variables("Variables")
cpp/ControlFlowGroup -.-> cpp/conditions("Conditions")
cpp/ControlFlowGroup -.-> cpp/for_loop("For Loop")
cpp/FunctionsGroup -.-> cpp/function_parameters("Function Parameters")
cpp/IOandFileHandlingGroup -.-> cpp/output("Output")
cpp/StandardLibraryGroup -.-> cpp/standard_containers("Standard Containers")
cpp/SyntaxandStyleGroup -.-> cpp/code_formatting("Code Formatting")
subgraph Lab Skills
cpp/variables -.-> lab-96134{{"旋转排序向量中的最小元素"}}
cpp/conditions -.-> lab-96134{{"旋转排序向量中的最小元素"}}
cpp/for_loop -.-> lab-96134{{"旋转排序向量中的最小元素"}}
cpp/function_parameters -.-> lab-96134{{"旋转排序向量中的最小元素"}}
cpp/output -.-> lab-96134{{"旋转排序向量中的最小元素"}}
cpp/standard_containers -.-> lab-96134{{"旋转排序向量中的最小元素"}}
cpp/code_formatting -.-> lab-96134{{"旋转排序向量中的最小元素"}}
end