算法专栏
文章平均质量分 56
该专栏记录有关算法思想、算法题解、算法书籍等算法相关内容
叮咚叮当
五山禅院小谷围分校修自行车专业under-graduate
展开
-
算法竞赛入门经典(第二版)第三章--回文字
c++#include<iostream>#include<string>using namespace std;//镜像需要一个检查表,常量数组,+35检查char jian[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ123456789A000300HIL0JM0O0002TUVWXY51SE0Z0080";int main(){string s;...原创 2018-02-14 16:54:41 · 181 阅读 · 0 评论 -
算法竞赛第三章 习题3-5 谜题
#include<iostream>using namespace std;//建立5*5表格char biao[5][5];int main(){//填充表格 初始位置 x行 y列 cin不读空格 原来傻冒用cinint x , y ;char p; int t=0;while (cin.get(p)){if (t < 25){biao[t / 5][...原创 2018-02-19 08:20:57 · 380 阅读 · 0 评论 -
第三章 习题3-6
#include<iostream>using namespace std;//使用结构才能储存多类数据struct biaoyuan{int num = 0;char x;};biaoyuan biao[100][10];int main(){int r, w;//列行int count = 1;while (cin >> r >> w){...原创 2018-02-19 15:28:14 · 138 阅读 · 0 评论