网站首页 站内搜索

搜索结果

查询Tags标签: 3.24,共有 3条记录
  • ubuntu 16.04 cmake升级

    ubuntu 16.04 默认安装的 cmake 版本为 3.5,但有时编译一些包时需要更高的版本,需要升级 cmake。 千万别执行下面的命令,这样会把之前用 cmake 编译好的包都给卸载掉,包括ros。 sudo apt-get autoremove cmake比较简单的方法是下载 cmake 压缩包,直接建立软链接覆盖掉…

    2022/9/2 5:22:48 人评论 次浏览
  • 3.24

    1 #include<stdio.h>2 typedef struct{3 int m,n;4 }element;5 typedef struct{6 element array[50];7 int top;8 }Stack;9 void Inite(Stack*S) 10 { 11 S->top=-1; 12 } 13 void Push(Stack*S,element e) 14 { 15 S->array[++S->top…

    2021/12/8 6:18:30 人评论 次浏览
  • 3.24

    1 #include<stdio.h>2 typedef struct{3 int m,n;4 }element;5 typedef struct{6 element array[50];7 int top;8 }Stack;9 void Inite(Stack*S) 10 { 11 S->top=-1; 12 } 13 void Push(Stack*S,element e) 14 { 15 S->array[++S->top…

    2021/12/8 6:18:30 人评论 次浏览
扫一扫关注最新编程教程