c语言,找出某个数出现的位置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言,找出某个数出现的位置相关的知识,希望对你有一定的参考价值。
用C语言:
先要求随意输入一段数,假如是“ABCDEFSZFEFSODEF”。
要求找出指定字符出现次数与位置,例如"EF"具体出现的次数和出现的位置。
要求得到的结果是:
次数:3
位置:5,10,15
~~~~~~~~~~~~~~
希望可以给CODE
首先先判断第二个字符串的长度
然后在第一个字符串里面循环截取长度为第二个字符串长度的字符串,存到临时字符串里。
比较临时字符串和第二个字符串是否相同,相同则记录找到次数并记录位置,不相同则继续循环。
如此即可。 参考技术B #include"stdio.h"
int Length(char *s)
int count=0;
while(*s++!='\0')
count++;
return count;
void Find(char*t,char*p)
int n=Length(t);
int m=Length(p);
int k=0,i,j,find;
if(n<m)
printf("a的长度小于b的,无法查找!\n");
return;
for(i=0;i<n;i++)
find=1;
for(j=0;j<m;j++)
if(t[i+j]!=p[j])
find=0; break;
if(find)
printf("%d \n",i+1);
main()
char a[50];
char b[50];
printf("输入字符串a:\n");
scanf("%s",&a);
printf("输入要查找的字符串b:\n");
scanf("%s",&b);
Find(a,b);
其余细节自己改改本回答被提问者采纳 参考技术C 已测试通过。
#include "stdio.h"
#include "string.h"
void main()
printf("\nPlease enter a string: ");
char strTotal[50];
gets(strTotal);
printf("\nPlease enter the string you want to find:");
char strFind[50];
gets(strFind);
if (strlen(strFind) > strlen(strTotal))
printf("\n\"%s\"dose not exist in \"%s\"", strFind, strTotal);
return;
char strNew[50] = '\0';
int nNum = strlen(strFind);
int nTime = 0;
int nLocate[50] = -1;
for (int i = 0; i < 50; i++)
nLocate[i] = -1;
int nTotalLen = strlen(strTotal);
for (i = 0; i < nTotalLen; i++)
int k = 0;
int nlenNewString = (i + nNum) < 50 ? i + nNum : 50;
for (int j = i; j < nlenNewString; j++)
strNew[k++] = strTotal[j];
strNew[k] = '\0';
if (strcmp(strNew, strFind) == 0)
nLocate[nTime] = i + 1;
nTime++;
printf("\nthe time is %d",nTime);
printf("\nthe locate is:");
for (i = 0; i < 50; i++)
if (nLocate[i] == -1)
break;
printf("%d ",nLocate[i]);
printf("\n");
1:TwoSum(如果两个和为某个数,找出这俩数的位置)
package leetcode;
import java.util.HashMap;
import java.util.Map;
/**
* @author mercy
*Example:
*Given nums = [2, 7, 11, 15], target = 9,
*Because nums[0] + nums[1] = 2 + 7 = 9,
*return [0, 1].
*/
public class TwoSum {
public static void main(String[] args) {
int[] nums={2,0,4,9,5,7,10,9};
int target=12;
int[] arr=twoSum1(nums,target);
System.out.println(arr[0]+"--"+arr[1]);
}
public static int[] twoSum(int[] nums, int target) {
Map<Integer,Integer> map=new HashMap<>();
for(int i=0;i<nums.length;i++){
map.put(nums[i], i);
}
for(int i=0;i<nums.length;i++){
int other=target-nums[i];
if(map.containsKey(other)&&map.get(other)!=i){
return new int[] { i, map.get(other) };
}
}
throw new IllegalArgumentException("No two sum solution");
}
/**
* @param nums
* @param target
* @return
* 用Map方法
* @author mercy
*/
public static int[] twoSum1(int[] nums, int target) {
Map<Integer,Integer> map=new HashMap<>();
for(int i=0;i<nums.length;i++){
int other=target-nums[i];
if(map.containsKey(other)){
return new int[]{map.get(other),i};
}
map.put(nums[i], i);
}
throw new IllegalArgumentException("No two sum solution");
}
/**
* @param nums
* @param target
* @return
* 传统的方法
* @author mercy
*/
public static int[] twoSum2(int[] nums, int target) {
for(int i=0;i<nums.length;i++){
for(int j=i+1;j<nums.length;j++){
if(nums[j]==target-nums[i]){
return new int[] {i,j};
}
}
}
throw new IllegalArgumentException("No two sum solution");
}
}
以上是关于c语言,找出某个数出现的位置的主要内容,如果未能解决你的问题,请参考以下文章
C语言找出最大水仙花数(水仙花数是3位整数,且各位立方之和等于该数,如153就是水仙花数)