- 博客(6)
- 收藏
- 关注
原创 mac 安装brew
之前搜到的命令都不行,最新版是这个 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2016-07-11 14:22:58 316
原创 递归实现二叉搜索树建立
写了个代码,然而就是运行崩溃,各种调试半天,发现还是不知道哪里错了 不抱希望的百度了下,发现网上竟然有典型错我与我的代码一样,唉。转载如下 #include #include #include typedef struct NODE { NODE * pleft; NODE * pright; int ivalue; } node; /* 错误示例,实际上这
2016-05-14 12:30:14 437
原创 HDU1015
#include #include #include #include using namespace std; char str[25]; int flag[25]; int s[25]; int f[25]; bool cmp(char a,char b){ return a>b; } int res(int v,int w,int x,int y,int z){ return (v-w*
2016-04-09 20:00:18 402
原创 HDU1005
#include using namespace std; int main(){ int a,b,n,i,f[53]={1,1,1}; while(scanf("%d%d%d",&a,&b,&n)&&a&&b&&n){ a%=7;b%=7; for(i=3;i<53;i++){ f[i]=(a*f[i-1]+b*f[i-2])%7; if(f[i]==1&&f[i-1
2016-04-08 11:42:09 276
原创 一道顺序表的实验题的反思
一开始写了个代码,输出结果表示莫名奇妙, #include #include #define maxn 20 typedef struct table_type{ int a[maxn]; int length; } table_type; table_type *table; //o123,length=4,1,2,3,4,a[2]jfrom 4 to 2, table_type *In
2016-03-13 13:36:19 406
原创 蒜头爬楼梯
#include #include using namespace std; #define MAXN 50 int dp(int i){ if(i==1) return 1; if(i==2) return 2; dp(i)=dp(i-1)+dp(i-2); } int main(){ int n; n=scanf("
2016-02-26 22:20:05 1327
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人