- 博客(13)
- 收藏
- 关注
原创 eclipse删除项目又从新导入(未有物理删除,也就是工作空间还有)
想重新import的时候,提示"Some projects cannot be imported because they already exist in the workspace".这时候把下面那个"Copy projects into workspace"的复选框取消,然后Refresh一下就行
2021-03-05 18:37:20 1082
原创 error MSB6006: “CL.exe”已退出,代码为 2。
问题如下,一下午都为这个问题烦死了1>------ 已启动生成: 项目: prog1, 配置: Debug Win32 ------1> TRACKER :1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\Microsoft.Cpp.Win32.Targets(147,5): ...
2019-09-15 15:56:19 10385 16
转载 Linux
Shell练习1 在终端下运行程序,首先清屏,然后提示:“Input a file or directory name, please!”。从键盘输入一个字符串(如:xxx),如果该字符串是目录,则显示:“xxx is a directory.”;如果该字符串是文件(如:xxx),则显示:“xxx is a regular file.”;如果既不是目录也不是文件,则显示:“This scr...
2019-04-27 18:48:20 1630
转载 安装vmware-tools出现”what is the location of the “ifconfig”program on your machine?”
安装vmware-tools出现”what is the location of the “ifconfig”program on your machine?”, 回车键后出现”The answer is invalid”.出现此问题的错误是因为网络问题, 解决办法如下:ubuntu方法/步骤 一:1. 执行sudo apt-get update, 如果无法安装说明网络连接出现问题,...
2019-04-17 11:32:59 273
原创 折半查找
#include <stdio.h> typedef struct {int r[10000],n,m; }Node;void scanf(Node *x){int i; for(i=1;i<10000;i++){ scanf("%d",&x->r[i]);if(getchar()=='\n'){break; } }x-...
2019-01-04 13:46:41 150
原创 快速排序
#include<stdio.h>int arr[100000];void change(int a[],int hign,int low){ int temp = a[hign]; a[hign] = a[low]; a[low] = temp;}int sort(int low, int high) { int key = arr[low]...
2019-01-04 13:45:05 163
原创 二叉排序树
#include <stdio.h>#include <stdlib.h>typedef struct BSTNode{ int data; struct BSTNode *lchild,*rchild;}BSTNode,*PNode;int count = 0;bool SearchBST(PNode T,int data){ co...
2019-01-04 13:43:12 116
转载 数据结构绪论
第一章 绪论一、选择题1. 算法的计算量的大小称为计算的( )。【北京邮电大学2000 二、3 (20/8分)】A.效率 B. 复杂性 C. 现实性 D. 难度2. 算法的时间复杂度取决于( )【中科院计算所 1998 二、1 (2分)】A.问题的规模 B. 待处理数据的初态 C. A和B3.计算机...
2018-11-09 21:16:10 6081
转载 数据结构之逻辑结构与物理结构(存储结构)
逻辑结构逻辑结构分为四种类型:集合结构,线性结构,树形结构,图形结构。所谓集合结构:表面意思,没有什么深刻意义,就是数据元素同属一个集合,单个数据元素之间没有任何关系。如下图所示。 线性结构类似于线性关系,也就是说,线性结构中的数据元素之间是一对一的关系。注意:重点在一对...
2018-11-09 21:07:56 851
转载 时间复杂度的计算
一、概念时间复杂度是总运算次数表达式中受n的变化影响最大的那一项(不含系数)比如:一般总运算次数表达式类似于这样:a*2^n+b*n^3+c*n^2+d*n*lg(n)+e*n+fa ! =0时,时间复杂度就是O(2^n);a=0,b<>0 =>O(n^3);a,b=0,c<>0 =>O(n^2)依此类推eg: (1) ...
2018-11-09 20:26:01 429
原创 串的模式匹配
#include<stdio.h>#include <string.h>int main(){char parent[1000];char child[1000];int m,n,k;bool flag = false;scanf("%s",&parent);scanf("%s",&child);int i = strlen(paren...
2018-11-08 20:29:45 196
原创 数制转换
//不同进制转换#include <stdio.h>int i=0;int main(){ int num; int kind; while(scanf("%d%d",&num,&kind)!=EOF) { i=0; if(num<0) { printf...
2018-11-08 19:24:00 190
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人