首页 > 代码库 > 密码加密问题
密码加密问题
密码加密问题
个人信息:就读于燕大本科软件工程专业 目前大三;
本人博客:google搜索“cqs_2012”即可;
个人爱好:酷爱数据结构和算法,希望将来从事算法工作为人民作出自己的贡献;
编程语言:C++ ;
编程坏境:Windows 7 专业版 x64;
编程工具:vs2010;
制图工具:office 2010 powerpoint;
硬件信息:7G-3 笔记本;
真言
题目如果自己没有完成任务,不是任务的问题,是自己的问题
思路百练 2818
ac代码1 暴力法,计算一次,移动一次
2优化: 计算一次,跟踪一次,再计算,在跟踪;最后在移动
3再优化:计算需要移动的次数,计算最终结果,然后移动
#include <iostream> #include <string> #include <vector> using namespace std; bool my_2818(vector<string> * myvector); int main() { bool sum = true; vector<string> * myvector = new vector<string>; vector<string>::iterator it; while(sum == true) sum = my_2818( myvector ); it = myvector->begin(); while(it < myvector->end()) { cout<<*it<<endl; it++; } system("pause"); return 0; } bool my_2818(vector<string> * myvector) { int n; cin>>n; if(n == 0) { return false; } int * data = http://www.mamicode.com/new int[n];>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。