两个典型错误

华为笔试题 :
在这里插入图片描述

// ConsoleApplication1.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <stdio.h>
#include <iostream>
#include <stdlib.h>
#include <algorithm>
#include <string.h>
#include <string>
#include <vector>
#include <queue>

using namespace std;

const int MaxS = 110;
const int MaxM = pow(10, 5) + 100;
const long long MaxL = pow(10, 6) + 100;


char str[MaxS];
char str2[MaxS];
char *strs[MaxS];
struct Node
{
	char* s;
	int num;
};
Node node[MaxS];

char* tokens1 = "1234567890";
char* tokens2 = "abcdefghijklmnopqrstuvwxyz";

bool cmp(Node a, Node b) {
	if (a.num != b.num) 
		return a.num < b.num;
	int tmp = strcmp(a.s, b.s);
	if (tmp != 0) 
		return tmp < 0;
	return false;
}

void print(int n) {
	for (int i = 0;i < n;i++) {
		for (int j = 0;j < node[i].num;j++) {
			printf("%s",node[i].s);
		}
	}
}

int main()
{
	freopen("Text.txt", "r", stdin);
	while (scanf("%s",str)!= EOF) {
		char * tmp;
		sprintf(str2, str);//error  strtok函数修改了str,但是在64行又对str用strtok,所以错误。这里应该用sprintf()函数对str进行备份。不能用char* str2 = str对str备份,因为str2是个指针,指向了原来的str。
		tmp = strtok(str, tokens1);
		int N = 0;
		node[N++].s = tmp;		
		do {
			tmp = strtok(NULL, tokens1);
			node[N++].s = tmp;
		} while (tmp);
		tmp = strtok(str2, tokens2);
		N = 0;
		node[N++].num = atoi(tmp);
		do {
			tmp = strtok(NULL, tokens2);
			if (tmp == NULL) break;//atoi函数要求它的参数不为空,所以应该加上这一句。应该根据调试出的错误类型推断问题所在。
			node[N++].num = atoi(tmp);
		} while (tmp);
		sort(node, node + N -1,cmp);
		print(N);
	}
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值