C++实现一个栈,出栈,入栈,返回最小值 时间复杂度为O(1),查找字符串中第一个重复出现的字符

#include
#include
using namespace std;
template
class Stack
{
public:
void push(int d)
{
s.push(d);
if (s.size()==1)
{
min.push(d);
}
else
if (s.top() <= min.top())
{
min.push(d);
}
}
void pop()
{
if (!s.empyt())
{
if (s.top() == min.top())
min.pop();
s.pop();
}
}
T& Min()
{
return min.top();
}
private:
stack min;
stack s;


};
char findsecondchar(char string[])
{
char s[300] = { 0 };
int i = 0;
while (string[i] != '\0')
{
int temp = string[i];
++s[temp];
if (s[temp] == 2)
{
return string[i];
}
i++;


}
return 0;
}


int main()
{
char string[] = { "abcdffr" };
cout< Stack s;
s.push(6);
s.push(2);
s.push(3);
s.push(8);
cout << s.Min() << endl;


system("pause");
return 0;
}

你可能感兴趣的:(C++实现一个栈,出栈,入栈,返回最小值 时间复杂度为O(1),查找字符串中第一个重复出现的字符)