嗯 零亂知識點map和字串轉換的

2021-08-04 17:27:34 字數 2348 閱讀 5685

幾個函式:

atof() 將字串轉換成浮點數值

atoi() 將字串轉換成整數值

atol() 將字串轉換成長整數值

strtod() 將字串轉換成雙精度型數值

strtol() 將字串轉換成長型數值

標頭檔案是stdlib.h

今天還看到了#include原本來自:

map是c++的乙個標準容器,她提供了很好一對一的關係,在一些程式中建立乙個map可以起到事半功倍的效果,總結了一些map基本簡單實用的操作!

1. map最基本的建構函式;

mapmapstring; 

mapmapint;

mapmapstring; 

map< char ,string>mapchar;

mapmapchar; 

mapmapint;

2. map新增資料;

mapmaplive; 

1.maplive.insert(pair(102,"aclive"));

2.maplive.insert(map::value_type(321,"hai"));

3,maplive[112]="april";//map中最簡單最常用的插入新增!

3,map中元素的查詢:

find()函式返回乙個迭代器指向鍵值為key的元素,如果沒找到就返回指向map尾部的迭代器。 

map::iterator l_it;; 

l_it=maplive.find(112);

if(l_it==maplive.end())

cout<<"we do not find112"<

elsecout<<"wo find112"<

如果刪除112;

map::iterator l_it;;

l_it=maplive.find(112);

if(l_it==maplive.end())

cout<<"we do not find112"<

else 

maplive.erase(l_it);

//delete 112;

5,map中 swap的用法:

map中的swap不是乙個容器中的元素交換,而是兩個容器交換;

for example:

#include #include

using namespacestd;

int main( )

6.map的sort問題:

map中的元素是自動按key公升序排序,所以不能對map用sort函式:

for example:

#include #include

using namespacestd;

int main( )

the original map m1 is:

1 20

2 50

3 60

4 40

6 40

7 30

請按任意鍵繼續. . .

7,  map的基本操作函式:

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的函式

番茄零亂初學c 之字串加減乘

記錄下自己學程式設計的點點滴滴。暫時不支援除法,還沒找到好的解決辦法。static string supercalc string a,string b,char op if op if carry 0 temp.insert 0,carry temps supercalc temps,temp.t...

字串知識點checklist

知識點checklist 1 strlen 函式的返回值是什麼型別的?2 字串strlen 的值,是否和他佔據的記憶體空間相同?3 你是否知道strcpy 函式存在的潛在風險?如何避免?4 如果乙個字串沒有字串結束符,而呼叫str 開頭的庫函式,會發生什麼?5 strcpy strcat strcm...

字串小知識點

1 字串操作 strcpy p,p1 複製字串 strncpy p,p1,n 複製指定長度字串 strcat p,p1 附加字串 strncat p,p1,n 附加指定長度字串 strlen p 取字串長度 strcmp p,p1 比較字串 strcasecmp忽略大小寫比較字串 strncmp p...