取出数组中不相同的数据

  取出数组a中数组b没有的数据:结果是1,3

            int[] a = { 1, 2, 3, 4 };
            int[] b = { 2, 4 };
            string aa = "";
            for (int i = 0; i < a.Length; i++)
            {
                for (int j = 0; j < b.Length; j++)
                {
                    if (j == b.Length - 1 && b[j] != a[i])
                    {
                        aa += a[i].ToString() + ",";
                    }
                    else if (b[j] == a[i])
                    {
                        break;
                    }
                }
            }

            lbl.Text = aa;
时间: 2024-10-14 14:57:14

取出数组中不相同的数据的相关文章

php取出数组中的最大值

1 <?php 2 3 /** 4 * @param $arr 5 * @return mixed 6 * php取出数组中的最大值(方法一) 7 */ 8 function getMax($arr){ 9 $max=$arr[0]; 10 foreach($arr as $k=>$v){ 11 if($v>$max){ 12 $max=$v; 13 } 14 } 15 return $max; 16 } 17 18 /** 19 * @param $arr 20 * @return m

Java 随机取出数组中n条不重复的数据

public static void main(String[] args) { List<String> list = new ArrayList<String>(); list.add("日本"); list.add("中国"); list.add("美国"); list.add("德国"); //把随机取得的数据存储在 listRandom 中 List<String> listRan

给出一个数组,计算数组中少了哪个数据的实现

题目:给一个数组,长度为99.里面存储了从0到99中100个字符,求计算少了那个数未在数组中? 实现方法1:正向存储的思维,时间和空间复杂度为o(1) import java.math: public class findMissDate{      public void main(Strings[] args)      int arr[] = new int[99];      public int findmiss(){         int k= (int)(Math.Random(

iOS去除数组中重复的model数据

// 去除数组中model重复 for (NSInteger i = 0; i < self.selectedModelArray.count; i++) { for (NSInteger j = i+1;j < self.selectedModelArray.count; j++) { AssistantModel *tempModel = self.selectedModelArray[i]; AssistantModel *model = self.selectedModelArray[

mysql取某个字段中的内容有等于数组中某个元素的数据

$arr =array("a","b","1","2"); 假设表名为acticle,字段为isread,表如下 id isread 1 1,3,4 2 a 3 3 我们取这个表中isread字段的内容等于数组某个元素的数据 $stmt = $con->prepare("select * from acticle where isread IN (" . implode(',', $arr) . &q

JavaScript根据Id取出数组中指定的对象

var obj=arr.find(function (obj) { return obj.id === 3 }) arr为包含对象的数组,取出的obj是数组arr中一个id为3的对象 原文地址:https://www.cnblogs.com/summer-qd/p/10954350.html

redis 排序 及 取出Hset中的多个数据(sort get 命令实践)

直接上命令 SORT carCondition-17.5-40 by car-*->id desc get car-*->chehao get car-*->id carCondition-17.5-40 在我测试里是 set  可以对 list 和 zset 进行操作   我在set中存储的是 car的id号 car-*   是所有车辆的实体 类型是 hset sort 命令 是让 carCondition-17.5-40 中所有的车辆的id 按照 车辆实体的id进行倒序排序 然后 g

数据库之取出表中最新时间的数据

以下内容仅做备忘 假设有以下表格[FM_ALARM] RES_ID : 资源的唯一标识 OCCUR_TIME : 发生时间(毫秒时间戳) SEVERITY : 告警级别 数据会实时变更,我要取出所有数据的最新一条记录,则可以使用以下SQL select res_id, severity from fm_alarm t where not exists (select 1 from fm_alarm where t.res_id = res_id and t.occur_time < occur_

去除数组中文件名类似的数据

需求: 1. 获取vta端上传的所有文件,一般都是图片和txt文件.pdf文件. 2.获取的文件中teller给vtm端推送pdf,vtm端客户没确认之前pdf文件名不变,客户确认后文件名变为_signature.pdf,当客户确认了pdf后,确认后的  _signature.pdf   的  pdf  将原来没有确认的 pdf 覆盖掉. 代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8&quo