c/c++笔记
文章平均质量分 75
paradisezzy
这个作者很懒,什么都没留下…
展开
-
将函数作为参数传递/以及计算函数运行时间的函数的实现
需要写一个九三函数运行时间的函数,那么就需要把函数作为参数 查了一下把函数作为参数的方法 把函数作为参数传递,常用的方法之一是用typedef定义一个函数指针。 #include using namespace std; typedef int (*pf)(int,int); //此种方式最容易理解,定义了一个函数指针类型;函数名就是指针。 int f(pf p,int原创 2017-07-28 23:10:36 · 253 阅读 · 0 评论 -
括号配对(用栈实现)
#include #include #include using namespace std; int main() { char ch; stackmystack; bool isMatching = true; while ((ch=getchar())!='\n') { switch (ch) { case '(': case '[': mystack.原创 2017-11-12 11:24:31 · 597 阅读 · 0 评论 -
ll
#include<iostream> #include<iomanip> using namespace std; #define PI 3.1415926535 class Pool { private: double radius;//池子的半径 double width;//走道的宽度 const static double railPrice; const ...原创 2018-04-07 00:48:16 · 194 阅读 · 0 评论