C++值傳遞、引用傳遞、指標傳遞以及STL模板堆的使用

來源:互聯網
上載者:User

1、C++中數組作為實際參數傳遞的三種形式參數方法

 

#include<iostream>
using namespace std;

void change(int& a,int b){   //通過引用,引用是原變數的別名,變數值返回時會受影響
 
 a=5;
}

void change1(int* a,int b){   //通過指標進行傳遞,變數值返回時會受影響
 
 *a=0;
}

void change2(int a,int b) {   //變數值返回時不會受影響
 
 a=2;
}

int main(){
 
 int c=6,d=4;
 change(c,d);     //直接傳遞變數
 cout<<c<<endl;
 
 change1(&c,d);     //傳遞變數地址
 cout<<c<<endl;
 
 change2(c,d);     //傳遞變數
 cout<<c<<endl;
 
 return 0;
}

 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

 

2、C++中的優先隊列,預設是大堆,自訂為小堆,注意:如何重載opertor<函數。

 

/* 在struct結構中重載operator< 函數
#include<iostream>
#include<string>
#include<queue>
using namespace std;

struct ss{
 string name;
 double score;

 

//自訂struct元素類型的operator<重載函數,使得優先隊列中,將小元素放在隊列的首部
//返回true的排在後面
 friend bool operator<( const ss& a, const ss& b){    return a.score> b.score ;
 }

};

int main(){
 
 struct ss stu[]={{"suting",120.0},{"xiaowang",123.0},{"xiaoli",110}};
 priority_queue<ss> q;

 for(int i=0; i< sizeof stu/sizeof stu[0] ; i++)
  q.push(stu[i]);

 cout<<q.top().name<<endl;
 
}
*/

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.