上一页 1 ··· 5 6 7 8 9

[leetcode]890. 查找和替换模式

摘要: 题目 你有一个单词列表 words 和一个模式 pattern,你想知道 words 中的哪些单词与模式匹配。 如果存在字母的排列 p ,使得将模式中的每个字母 x 替换为 p(x) 之后,我们就得到了所需的单词,那么单词与模式是匹配的。 (回想一下,字母的排列是从字母到字母的双射:每个字母映射到另 阅读全文
posted @ 2018-08-19 19:47 刘好念 阅读(4) 评论(0) 推荐(0) 编辑

[leetcode]205. Isomorphic Strings 同构字符串

摘要: 题目描述: Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if the characters in s can be replaced to get t. All occ 阅读全文
posted @ 2018-08-19 19:31 刘好念 阅读(3) 评论(0) 推荐(0) 编辑

[C++] C++构造函数的重载

摘要: 构造函数的重载与普通函数的重载基本相同,代码如下: #include <iostream> using namespace std; class MyClass{ private: int data_1; int data_2; public: myclass(int data1, int data 阅读全文
posted @ 2018-04-19 11:31 刘好念 阅读(10) 评论(0) 推荐(0) 编辑

Hanoi汉诺塔

摘要: #汉诺塔# 代码 #include <iostream> #include <stdio.h> using namespace std; //汉诺塔函数,参数,n剩余棋子数,prime棋子初始所在杆,help移动棋子需要借助的杆,target最终移动的目标杆 void hanoi(int n, ch 阅读全文
posted @ 2017-12-22 23:24 刘好念 阅读(2) 评论(0) 推荐(0) 编辑

Eight Queen

摘要: 八皇后问题 代码 #include <iostream> #include <stdio.h> #include <string.h> #include <math.h> #include <cmath> using namespace std; int p[8][8]; // 棋盘数组 int c 阅读全文
posted @ 2017-12-19 21:46 刘好念 阅读(2) 评论(0) 推荐(0) 编辑

Oil Deposits

摘要: Oil Deposits 杭电OJ1241题目链接 Problem Description The GeoSurvComp geologic survey company is responsible for detecting underground oil deposits. GeoSurvCo 阅读全文
posted @ 2017-12-19 21:20 刘好念 阅读(3) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9