c#在数组中查找数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#在数组中查找数据相关的知识,希望对你有一定的参考价值。
比如一个很长的数组 如double[1000]=0,99,99.9,102,199,200,204.......
我我要在里面寻找100,200等整数值 ,如果没有的话就寻找最相近的 ,不知有没有什么好方法
double[] arrays = new double[] 0, 99, 99.9, 102, 199, 200, 204 ;
int[] targets = new int[] 100, 200 ;
List<int> buffer = new List<int>(8); // 存放找到的数
List<int> tmp = new List<int>(8); // 临时缓存
double min = 0d;
double dis = 0d;
foreach(int target in targets)
min = Math.Abs(target - arrays[0]);
foreach (double num in arrays)
dis = Math.Abs(target - num);
if (dis < min)
min = dis;
tmp.Clear();
tmp.Add((int)num);
else if (dis == min)
tmp.Add((int)num);
buffer.AddRange(tmp);
// 打印要找的
foreach (int finded in buffer)
Console.WriteLine("要找的:" + finded);
参考技术A 可以使用数组的Contains方法,该方法能判断数组中是否包含你要查找的值,至于效率会不会比循环的效率高,没有进行过测试,估计会比循环快。
double[] aa = 0, 99, 99.9, 102, 199, 200, 204 ;
if (aa.Contains(99))
Console.WriteLine("该数组中包含0个元素", 99);
希望对你有帮助 参考技术B 用空间换时间吧
生成一个int
count[999]数组,count[i-1]保存的是数据i的出现次数
扫描目标数组的时候,如果count[i-1]
==
0
的话,count[i-1]加1,否则直接返回i,只扫描一次,时间复杂度是1000
int
getrepeat(int[]
arr)
int[]
count=
new
int[999];
//数组每一个数初始化为0
foreach(int
i
in
arr)
if(count[i-1]
==
0)
count[i-1]++;
else
if(count[i-1]
==
1)
return
i;
return
-1;
//找不到返回-1
参考技术C 循环...优化下算法..
比如 for (int i=0; i<(int)(Arr.length / 2); i++) 参考技术D 查找数组,最好用foreach
foreach(int a in Arr)
if(a==100||a==200)
......
C# 字符串数组中查找是否有匹配字符串
有两种方式来实现,
第一种:Any()
第二种:FirstOrDefault()
这两种方式都会在找到第一个匹配的字符串后停止查找。
还可以设置在比较时候忽略大小写,targetString.Equals(id, StringComparison.OrdinalIgnoreCase);
如果没有找到匹配字符,也可以抛出异常。使用 string.join()
把待选字符串数组中的所有字符串组合成一个字符串输出。
using System;
using System.Linq;
namespace Any
class Program
static void Main(string[] args)
Console.WriteLine("Hello World!");
string[] testString = new string[] "abc", "BCa", "cBA", "edc" ;
string targetString = "EDC";
//bool hasTargetString = testString.Any((id) =>
//
// Console.WriteLine(id);
// return string.Compare(id, targetString) == 0;
//);
bool hasTargetString = testString.Any((id) =>
Console.WriteLine(id);
return targetString.Equals(id, StringComparison.OrdinalIgnoreCase);
);
if (!hasTargetString)
Console.WriteLine("can't find the target string");
Console.WriteLine("====================================");
string matchString = testString.FirstOrDefault((id) =>
Console.WriteLine(id);
return string.Compare(id, targetString) == 0;
);
if (matchString == null)
Console.WriteLine("can't find the target string");
throw new Exception(string.Join(',', testString));
以上是关于c#在数组中查找数据的主要内容,如果未能解决你的问题,请参考以下文章