C++的STL在C#中的应用
这里主要讲几个重要的STL在C#中的应用:vector, map, hash_map, queue, set, stack, list.
vector: 在C#中换成了list
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace test2 { class Program { static void Main(string[] args) { Person p1 = ); Person p2 = ); Person p3 = ); List<Person> persons = new List<Person>(); persons.Add(p1); persons.Add(p2); persons.Add(p3); //能直接访问index Console.WriteLine(persons[].Name); //sort方法1 persons.Sort(); foreach (Person p in persons) { Console.WriteLine(p.Name); } //sort方法2 persons.Sort(NameComparer.Default); foreach (Person p in persons) { Console.WriteLine(p.Name); } //sort方法3 System.Comparison<Person> NameComparison = new System.Comparison<Person>(PersonComparison.Name); persons.Sort(NameComparison); foreach (Person p in persons) { Console.WriteLine(p.Name); } //search System.Predicate<Person> MidAgePredicate = new System.Predicate<Person>(PersonPredicate.MidAge); List<Person> MidAgePersons = persons.FindAll(MidAgePredicate); foreach (Person p in MidAgePersons) { Console.WriteLine(p.Name); } //Persons集合 Persons PersonCol = new Persons(); PersonCol.Add(p1); PersonCol.Add(p2); PersonCol.Add(p3); Console.WriteLine(PersonCol.GetAllNames()); Console.ReadKey(); } } class Person : IComparable<Person> { private string _name; private int _age; public Person(string Name, int Age) { this._age = Age; this._name = Name; } public string Name { get { return _name; } } public int Age { get { return _age; } } public int CompareTo(Person p) { return this.Age - p.Age; } } class NameComparer : IComparer<Person> { public static NameComparer Default = new NameComparer(); public int Compare(Person p1, Person p2) { return System.Collections.Comparer.Default.Compare(p1.Name, p2.Name); } } class PersonComparison { public static int Name(Person p1, Person p2) { return System.Collections.Comparer.Default.Compare(p1.Name, p2.Name); } } class PersonPredicate { public static bool MidAge(Person p) { ; } } class Persons : List<Person> { public string GetAllNames() { ) return ""; string val = ""; foreach (Person p in this) { val += p.Name + ","; } , val.Length - ); } } }
还可以参考http://www.cnblogs.com/yingzhongwen/archive/2013/04/09/3010182.html
list没有赋初值的方法,只能new一个出来,再不停地Add...而数组是有初始值的,但不能给它赋特别的初始值,int的初始值为0,bool为false
List的方法和属性
Capacity 用于获取或设置List可容纳元素的数量。当数量超过容量时,这个值会自动增长。
Count 属性,用于获取数组中当前元素数量
Item( ) 通过指定索引获取或设置元素。对于List类来说,它是一个索引器。
Add( ) 在List中添加一个对象的公有方法
AddRange( ) 公有方法,在List尾部添加实现了ICollection接口的多个元素
BinarySearch( ) 重载的公有方法,用于在排序的List内使用二分查找来定位指定元素.
Clear( ) 在List内移除所有元素
Contains( ) 测试一个元素是否在List内
CopyTo( ) 重载的公有方法,把一个List拷贝到一维数组内, 注意这里是List.CopyTo(int[]); List之间的深拷贝只能是List<int> tmp = new List<int>(tmp1.ToArray());
Exists( ) 测试一个元素是否在List内(跟Contains有啥区别。。。)
Find( ) 查找并返回List内的出现的第一个匹配元素
FindAll( ) 查找并返回List内的所有匹配元素
GetEnumerator( ) 重载的公有方法,返回一个用于迭代List的枚举器
Getrange( ) 拷贝指定范围的元素到新的List内
IndexOf( ) 重载的公有方法,查找并返回每一个匹配元素的索引
Insert( ) 在List内插入一个元素, Insert(int index, T tmp);
InsertRange( ) 在List内插入一组元素
LastIndexOf( ) 重载的公有方法,,查找并返回最后一个匹配元素的索引
Remove( ) 移除与指定元素匹配的第一个元素
RemoveAt( ) 移除指定索引的元素
RemoveRange( ) 移除指定范围的元素
Reverse( ) 反转List内元素的顺序
Sort( ) 对List内的元素进行排序
ToArray( ) 把List内的元素拷贝到一个新的数组内
trimToSize( ) 将容量设置为List中元素的实际数目
map: 在C#中换成了directory,基本跟map用法差不多
Dictionary<string, string> pList = new Dictionary<string, string>(); pList.Add("); string s = "d"; pList.TryGetValue("zhangsan", out s); Console.WriteLine("{0}", s); if (pList.ContainsKey("zhangsan")) Console.WriteLine("pList containsKey zhangsan"); ")) Console.WriteLine("pList containsValue 40"); Console.WriteLine(pList.Count); foreach (var dic in pList) { Console.WriteLine("Output : Key : {0}, Value : {1}", dic.Key, dic.Value); } pList.Remove("zhangsan");
hash_map: C#没有这个东西
queue:C#还是叫Queue
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace test2 { class Program { static void Main(string[] args) { Queue<string> que = new Queue<string>(); que.Enqueue("zhangsan"); que.Enqueue("lisi"); que.Enqueue("wangwu"); Console.WriteLine("Count: {0}", que.Count); Console.WriteLine("Queue values: "); PrintValues(que); Console.WriteLine("(Dequeue)\t{0}", que.Dequeue()); Console.WriteLine("Queue values: "); PrintValues(que); Console.WriteLine("(peek) \t{0}", que.Peek()); Console.WriteLine("Queue values: "); PrintValues(que); Console.ReadKey(); } public static void PrintValues(IEnumerable<string> myCollection) { foreach (Object obj in myCollection) { Console.WriteLine(" {0}", obj); } } } }
set: C#叫HashSet
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace test2 { class Program { static void Main(string[] args) { HashSet<string> set = new HashSet<string>(); set.Add("zhangsan"); set.Add("lisi"); set.Add("wangwu"); if (set.Contains("zhangsan")) Console.WriteLine("set contans zhangsan"); Console.WriteLine(set.Count); set.Remove("zhangsan"); if (set.Contains("zhangsan")) Console.WriteLine("set contans zhangsan"); Console.WriteLine(set.Count); foreach (var s in set) Console.WriteLine("{0}", s); set.Clear(); Console.WriteLine(set.Count); } } }
stack: C#还是叫stack(遵照set)
stack.Push();
stack.Pop();
stack.Peek();
list: C#就是list
string:
string是readonly的,要修改某一个字符就得先转成char[],再转回来
char[] sh = str.ToArray();
sh[3] = 'a';
str = new string(sh);
string s = "hello world";
1. bool b1 = s.Contains("hello");
2. 定位
2.1 IndexOf/LastIndexOf
int IndexOf(char value);
int IndexOf(char value, int startIndex);
int IndexOf(char value, int startIndex, int count);
int IndexOf(string value);
int IndexOf(string value, int startIndex);
int IndexOf(string value, int startIndex, int count);
2.2 IndexOfAny/LastIndexOfAny
int IndexOfAny(char[] anyof);
int IndexOfAny(char[] anyof, int startIndex);
int IndexOfAny(char[] anyof, int startIndex, int count);
LastIndexOfAny跟2.1类似
最后补充一下数组
int[,] f = new int[3, 5]; //声明一个3行5列的int数组
int m = f.GetLength(0); //获得行数
int n = f.GetLength(1); //获得列数
二维数组在函数里以一维作为参数时,C#没有办法用f[i]这种形式,只能传进f和行号,这确实比较麻烦
C++的STL在C#中的应用的更多相关文章
- stl 在 acm中的应用总结
总结一些在acm中常用的小技巧,小函数 之前尝试着总结过很多次.都失败了,因为总是担心不全,理解的也不是很透彻.这次再来一次...其实之前保存了很多的草稿就不发布了,当然,下面说的很不全面,路过的大牛 ...
- STL源码中map和set中key值不能修改的实现
前言 最近正好刚刚看完,<stl源码剖析>这本书的map和set的源码部分.但是看完之后又突然发现,之前怎么没有注意到map和set容器中key不能修改是怎么实现的.故,特此整理如下. s ...
- Three.js 3D打印数据模型文件(.STL)载入中
3DPrint是现在和未来10年度科技产品的主流之中.广泛的. 对于电子商务类3D打印网站.一个主要功能就是商品3D呈现的方式,那是,3D数据可视化技术. HTML5(WebGL)它可以用于构建3D查 ...
- 参考C++STL标准库中对了的使用方法
http://www.cppblog.com/zhenglinbo/archive/2012/09/18/191170.html 参考:http://www.cppblog.com/zhenglinb ...
- SGI STL红黑树中迭代器的边界值分析
前言 一段程序最容易出错的就是在判断或者是情况分类的边界地方,所以,应该对于许多判断或者是情况分类的边界要格外的注意.下面,就分析下STL中红黑树的迭代器的各种边界情况.(注意:分析中STL使用的版本 ...
- 关于C++ STL标准库中map 的多元素应用
map的特性是,所有的元素会根据键值自动排序.map的所有元素都是pair,同时拥有实值(value)和键值(key).pair的第一个元素被视为键值,第二个被视为实质piar 的定义 templat ...
- 自定义的类型放入STL的set中,需要重载自定义类中的“<”符号(转)
在以前学习STL的时候,曾经学到过,如果要将自定义的类型放入到set中的话,就需要重载“<”符号,原因是set是一个有序的集合,集合会按照“<”比较的大小,默认按照从小到大的顺序排列.假设 ...
- 数据结构中数组反转与STL库Algorithm中的reverse
数组是个基本的线性数据结构,其实是内存中的一个块,我们可以通过c++的new来分配一个数组 int* a= new int[5]; 然后填数组的每个元素 a[0]=1; a[1]=2; a[2]=6; ...
- STL标准库中的容器
容器:顾名思义,我的理解就是把同一种数据类型括起来,作为一捆.如vector<int> ,vector就是个容器,里面全是一个个的int型数据. 容器包括三大块: 顺序型容器: (1)ve ...
随机推荐
- AndEngine
AndEngine http://www.oschina.net/question/54100_16765
- 在serviceImpl里使用自身的方法
@Service("tbLeaveRegisterService")@Transactionalpublic class TbLeaveRegisterServiceImpl ex ...
- php之curl实现http与https请求的方法
原文地址:http://m.jb51.net/show/56492 这篇文章主要介绍了php之curl实现http与https请求的方法,分别讲述了PHP访问http网页与访问https网页的实例 ...
- 玩儿了一下django User authentication
五一在家,VPN不能链接了,而项目在本地run的过程中,又需要链接公司的SSO server才能login.下雨,不想去公司,又不得不在家做task,只能想办法避开SSO login,以前知道djan ...
- Weak Pair---hud5877大连网选(线段树优化+dfs)
题目链接:http://acm.split.hdu.edu.cn/showproblem.php?pid=5877 题意:给你一颗树,有n个节点,每个节点都有一个权值v[i]:现在求有多少对(u,v ...
- get 与 post
<form action="Default.aspx" method="get"> get 服务器端 用request.querystring来获 ...
- Sql server中内连接语句
数据库中学生表和课程表如下: 内连接sql语句: select a.studentName,a.studentAge,b.courseName from student a inner join co ...
- imx6 otg host support
本文记录添加imx6 otg host支持的过程. 参考链接 http://www.cnblogs.com/helloworldtoyou/p/6108560.html https://communi ...
- NavigationController popToViewController跳转之前任意ViewController方法
NSArray *viewControllers = self.navigationController.viewControllers;A *viewController = [viewContro ...
- opencv hog+svm行人检测
http://blog.csdn.net/masibuaa/article/details/16105073 http://blog.csdn.net/u011263315/article/detai ...