摘要:
题目描述 将一个字符串转换成一个整数,要求不能使用字符串转换整数的库函数。 1 class Solution { 2 public: 3 enum Status{KValid = 0, KInvalid}; 4 int g = KValid; 5 6 long long StrToIntCore(s 阅读全文
摘要:
1 class A 2 { 3 public: 4 static A* getInstance() 5 { 6 return new A(); 7 } 8 9 static void DeleteInstance(A *a) 10 { 11 delete a; 12 } 13 private: 1... 阅读全文
摘要:
题目描述 LL今天心情特别好,因为他去买了一副扑克牌,发现里面居然有2个大王,2个小王(一副牌原本是54张^_^)...他随机从中抽出了5张牌,想测测自己的手气,看看能不能抽到顺子,如果抽到的话,他决定去买体育彩票,嘿嘿!!“红心A,黑桃3,小王,大王,方片5”,“Oh My God!”不是顺子.. 阅读全文
摘要:
1 #include 2 #include 3 using namespace std; 4 5 void Print(int number) 6 { 7 if (number < 1) 8 return; 9 int *p[2]; 10 p[0] = new int[6 * number + 1]; 11 p[1] = new... 阅读全文