第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

請問大神們,要怎么實現(xiàn)這個top()函數(shù)【返回棧最頂元素,并且能夠修改其值】的功能呢?

請問大神們,要怎么實現(xiàn)這個top()函數(shù)【返回棧最頂元素,并且能夠修改其值】的功能呢?

月關寶盒 2023-02-11 18:14:44
如圖,通過s.top()函數(shù)是可以直接修改棧堆最頂元素的值的。我們老師叫我們自己仿寫一個棧,我寫了一個,但是這個top()函數(shù)的功能卻不懂怎么實現(xiàn)。如下圖:錯誤提示是:error C2244: 'MyPittyStack<Type>::top' : unable to resolve function overload.
查看完整描述

2 回答

?
ibeautiful

TA貢獻1993條經(jīng)驗 獲得超6個贊

Type *MyPittyStack()
{
return &s[tos-1];//如果是從0開始累積tos,就要-1
}

查看完整回答
反對 回復 2023-02-15
?
拉風的咖菲貓

TA貢獻1995條經(jīng)驗 獲得超2個贊

#include <iostream>using namespace std; template<class Type>class MyPittyStack{    int i;public:    Type a[100];    bool push(Type n);    Type &top();    MyPittyStack();}; template<class Type>MyPittyStack<Type>::MyPittyStack(){    i = 0;} template<class Type>bool MyPittyStack<Type>::push(Type n){    a[i++] = n;    return true;} template<class Type>Type & MyPittyStack<Type>::top(){    return a[i];} int main(){    MyPittyStack<int> s;    s.push(123);    s.top() = 456;    cout<<s.top()<<endl;    return 0;}


查看完整回答
反對 回復 2023-02-15
  • 2 回答
  • 0 關注
  • 105 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號