摘要:
RADIUS:Remote Authentication Dial In User Service 中文名: 远程用户拨号认证服务 是应用最广泛的AAA协议。 AAA协议一般指AAA(网络安全系统),AAA是认证(Authentication)、授权(Authorization)和计费(Accoun 阅读全文
摘要:
#include <bits/stdc++.h> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ boo 阅读全文
摘要:
class Solution { public: vector<int> plusOne(vector<int>& digits) { int len = digits.size(); for(int i = len -1;i>=0;i--) { if(digits[i] != 9) { digit 阅读全文