- 博客(3)
- 收藏
- 关注
原创 Java 黑白棋盘
package scr; import java.awt.*; import javax.swing.*; public class Exercise12_10 extends JFrame{ public Exercise12_10(){ setLayout(new GridLayout(8,8,0,0)); JButton jb[][]=new JButton[8][8]
2016-11-12 14:50:22
1348
原创 编辑距离(动态规划法)
#include #include #include using namespace std; void HHHString(int m,int n,char *a,char *b,int (*c)[50]); int min(int a,int b,int c) { int t = a < b ? a : b; return t < c ? t :
2016-10-22 22:17:07
350
原创 折半查找的递归算法
大家好呀~我是一个大一的学生,计算机专业。一直在学习代码,可是以前都没有过记录和总结,感到可惜,所以这次开了个博客,专门用来记录我写的好的代码。 可能很多地方做得不好,希望大家给我意见。 这个算法是用C++写的折半查找的算法,用的是递归算法。 //算法 折半查找的递归算法 #include using namespace std; #define MAXSIZE 100 #d
2016-06-10 12:23:15
1987
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅