map的用法实例 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 #include <iostream> #include <map> using namespace std;int main () { map<int , char > hash; hash.insert (pair<int , char >(0 ,'a' )); hash.insert (pair<int , char >(1 ,'b' )); hash[2 ] = 'c' ; hash[3 ] = 'd' ; for (int i = 0 ; i < 4 ; i++) cout << hash[i]; cout << endl; map<int , char >::iterator iter; iter = hash.find (1 ); if (iter != hash.end ()) cout << "Find, the value is " <<iter->second<<endl; else cout << "Do not Find" << endl; iter = hash.find (1 ); hash.erase (iter); iter = hash.find (1 ); if (iter != hash.end ()) cout << "Find, the value is " <<iter->second<<endl; else cout << "Do not Find" << endl; cout << hash.erase (0 ) << endl; hash.clear ();return 0 ; }
map的基本操作函数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 C++ maps是一种关联式容器,包含“关键字/值”对 begin() 返回指向map头部的迭代器 clear() 删除所有元素 count() 返回指定元素出现的次数 empty() 如果map为空则返回true end() 返回指向map末尾的迭代器 equal_range() 返回特殊条目的迭代器对 erase() 删除一个元素 find() 查找一个元素 get_allocator() 返回map的配置器 insert() 插入元素 key_comp() 返回比较元素key的函数 lower_bound() 返回键值>=给定元素的第一个位置 max_size() 返回可以容纳的最大元素个数 rbegin() 返回一个指向map尾部的逆向迭代器 rend() 返回一个指向map头部的逆向迭代器 size() 返回map中元素的个数 swap() 交换两个map upper_bound() 返回键值>给定元素的第一个位置 value_comp() 返回比较元素value的函数
map和unordered_map的优缺点和不同之处: map和unordered_map的差别和使用_陈云佳的专栏-CSDN博客
LinkList的用法 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 #include <bits/stdc++.h> using namespace std;typedef struct LNode { int data; struct LNode *next ; }LNode, *LinkList; bool InitList_L (LinkList &L) { L=new LNode; if (!L) return false ; L->next=NULL ; return true ; }void CreateList_H (LinkList &L) { int n; LinkList s; L=new LNode; L->next=NULL ; cout <<"请输入元素个数n:" <<endl; cin>>n; cout <<"请依次输入n个元素:" <<endl; cout <<"前插法创建单链表..." <<endl; while (n--) { s=new LNode; cin>>s->data; s->next=L->next; L->next=s; } }void CreateList_R (LinkList &L) { int n; LinkList s, r; L=new LNode; L->next=NULL ; r=L; cout <<"请输入元素个数n:" <<endl; cin>>n; cout <<"请依次输入n个元素:" <<endl; cout <<"尾插法创建单链表..." <<endl; while (n--) { s=new LNode; cin>>s->data; s->next=NULL ; r->next=s; r=s; } }bool GetElem_L (LinkList L, int i, int &e) { int j; LinkList p; p=L->next; j=1 ; while (j<i && p) { p=p->next; j++; } if (!p || j>i) return false ; e=p->data; return true ; }bool LocateElem_L (LinkList L, int e) { LinkList p; p=L->next; while (p && p->data!=e) p=p->next; if (!p) return false ; return true ; }bool ListInsert_L (LinkList &L, int i, int e) { int j; LinkList p, s; p=L; j=0 ; while (p&&j<i-1 ) { p=p->next; j++; } if (!p || j>i-1 ) return false ; s=new LNode; s->data=e; s->next=p->next; p->next=s; return true ; }bool ListDelete_L (LinkList &L, int i) { LinkList p, q; int j; p=L; j=0 ; while ((p->next)&&(j<i-1 )) { p=p->next; j++; } if (!(p->next)||(j>i-1 )) return false ; q=p->next; p->next=q->next; delete q; return true ; }void Listprint_L (LinkList L) { LinkList p; p=L->next; while (p) { cout<<p->data<<"\t" ; p=p->next; } cout<<endl; }int main () { int i,x,e,choose; LinkList L; cout << "1初始化\n" ; cout << "2创建单链表(前插法)\n" ; cout << "3创建单链表(尾插法)\n" ; cout << "4取值\n" ; cout << "5查找\n" ; cout << "6插入\n" ; cout << "7删除\n" ; cout << "8输出\n" ; cout << "0退出\n" ; choose=-1 ; while (choose!=0 ) { cout<<"请输入数字选择:" ; cin>>choose; switch (choose) { case 1 : if (InitList_L (L)) cout << "初始化一个空的单链表!\n" ; break ; case 2 : CreateList_H (L); cout << "前插法创建单链表输出结果:\n" ; Listprint_L (L); break ; case 3 : CreateList_R (L); cout << "尾插法创建单链表输出结果:\n" ; Listprint_L (L); break ; case 4 : cout << "请输入一个位置i用来取值:" ; cin >> i; if (GetElem_L (L,i,e)) { cout << "查找成功\n" ; cout << "第" << i << "个元素是:" <<e<< endl; } else cout << "查找失败\n\n" ; break ; case 5 : cout<<"请输入所要查找元素x:" ; cin>>x; if (LocateElem_L (L,x)) cout << "查找成功\n" ; else cout << "查找失败! " <<endl; break ; case 6 : cout << "请输入插入的位置和元素(用空格隔开):" ; cin >> i; cin >> x; if (ListInsert_L (L, i, x)) cout << "插入成功.\n\n" ; else cout << "插入失败!\n\n" ; break ; case 7 : cout<<"请输入所要删除的元素位置i:" ; cin>>i; if (ListDelete_L (L, i)) cout<<"删除成功!\n" ; else cout<<"删除失败!\n" ; break ; case 8 : cout << "当前单链表的数据元素分别为:\n" ; Listprint_L (L); cout << endl; break ; } } return 0 ; }