目录
【简介】
【题目】
【解答】
【备注】
【作者的话】
【简介】
基础十三题,旨在帮助应届生求职,告别单纯刷乐扣题目的苦恼,通过举一反三的方法帮助你破解面试难题。
【题目】
1.求长:求数组长度。
2.去重:求去重后的列表。(存入新列表List<int>)
3.索引:求删除第二个元素后的列表。(存入新列表List<int>)
4.索引:求在第二个元素后插入数字666的列表。(存入新列表List<int>)
5.索引:求索引为2的值
6.索引:求值为2的索引(所有都要求出来)
7.频率:统计数字出现频率,字典键装载数字,值装载出现次数。(存入新字典)
8.字典:在第七步求得的字典中,找出键为2的值;
9.字典:在第七步求得的字典中,找出值为2的键;
10.排序:2排第一,4排第二,其余按照从小到大排。(LINQ)
11.过滤:筛选出值大于4的列表。(存入新列表List<int>)
12.列表对比:已知新数组int[] nums2 = { 6,100},求 nums是否为 nums2的子集,返回布尔类型。
13.用foreach循环分别给nums每个不为0的值加一。(存入新列表List<int>)
【解答】
using System;
/*题目:1.求长:求数组长度。2.去重:求去重后的列表。(存入新列表List<int>)3.索引:求删除第二个元素后的列表。(存入新列表List<int>)4.索引:求在第二个元素后插入数字666的列表。(存入新列表List<int>)5.索引:求索引为2的值6.索引:求值为2的索引(所有都要求出来)7.频率:统计数字出现频率,字典键装载数字,值装载出现次数。(存入新字典)8.字典:在第五步求得的字典中,找出键为2的值;9.字典:在第五步求得的字典中,找出值为2的键;10.排序:2排第一,4排第二,其余按照从小到大排。(LINQ)11.过滤:筛选出值大于4的列表。(存入新列表List<int>)12.列表对比:已知新数组int[] nums2 = { 6,100},求 nums是否为 nums2的子集,返回布尔类型。13.用foreach循环分别给nums每个不为0的值加一。(存入新列表List<int>)*/
class Program
{static void Main(){int[] nums = { 0, 1, 2, 2, 3, 0, 4, 2 ,5};//题目数组// 1. 求长:求数组长度。int length = nums.Length;// 2. 去重:求去重后的列表。(存入新列表List<int>)List<int> distinctList = nums.Distinct().ToList();List<int> hashset = nums.ToHashSet().ToList();//法二// 3. 索引:求删除第二个元素后的列表。(存入新列表List<int>)var list = nums.ToList();list.RemoveAt(1);// 4. 索引:求在第二个元素后插入数字666的列表。(存入新列表List<int>)List<int> afterInsert666 = nums.ToList();afterInsert666.Insert(2 , 666); // 即在索引2位置插入数字666// 5. 索引:求索引为2的值int valueAtIndex2 = nums[2];// 6. 索引:求值为2的索引(所有都要求出来)List<int> indicesOfValue2 = nums.Select((num, index) => num == 2 ? index : -1).Where(index => index != -1).ToList();//Select转化为元组,再用Where过滤// 7. 频率:统计数字出现频率,字典键装载数字,值装载出现次数。(存入新字典)Dictionary<int, int> dic = new Dictionary<int, int>();foreach (var num in nums){dic[num] = dic.ContainsKey(num) ? dic[num] + 1 : 1;}// 8. 字典:在第七步求得的字典中,找出键为2的值;int valueForKey2 = dic.ContainsKey(2) ? dic[2] : 0;// 9. 字典:在第七步求得的字典中,找出值为2的键;List<int> keysForValue2 = dic.Where(kvp => kvp.Value == 2).Select(kvp => kvp.Key).ToList();// 10. 排序:2排第一,4排第二,其余按照从小到大排。(LINQ)var sortedList = nums.ToList().OrderByDescending(x => x == 2).ThenByDescending(x => x == 4).ThenBy(x=>x);// 11. 过滤:筛选出值小于3的列表。(存入新列表List<int>)List<int> filteredList = nums.Where(num => num < 3).ToList();//12.列表对比:已知新数组int[] nums2 = { 6,100},求 nums是否为 nums2的子集,返回布尔类型。int[] nums2 = { 6, 100 };HashSet<int> numsSet = new HashSet<int>(nums);HashSet<int> nums2Set = new HashSet<int>(nums2);bool isSubset = numsSet.IsSubsetOf(nums2Set);//13.用foreach循环分别给nums每个不为0的值加一。(存入新列表List<int>)List<int> newList = new List<int>();newList = nums.Select(num => num != 0 ? num + 1 : num).ToList();//13题法二//foreach (var num in nums)//{// if (num != 0)// {// newList.Add(num + 1);// }// else// {// newList.Add(num);// }//}}
}
【备注】
12题的解法很多,一解是LINQ
nums2.All(x => nums.Contains(x));//判断nums2的元素是否都在nums中
12题还能暴力遍历
using System;class Program
{static bool IsSubset(int[] arr1, int[] arr2){foreach (var num in arr2){bool found = false;foreach (var n in arr1){if (num == n){found = true;break;}}if (!found){return false;}}return true;}static void Main(){int[] nums = { 0, 1, 2, 2, 3, 0, 4, 2 ,5};//题目数组int[] nums2 = { 6, 100 };bool isSubset = IsSubset(nums, nums2);//判断nums2是否为nums的子集}
}
【作者的话】
欢迎在评论区提供更棒的解题思路,如有勘误,恳请斧正,感激万分!