代码搜索:编程问题

找到约 10,000 项符合「编程问题」的源代码

代码结果 10,000
www.eeworm.com/read/162112/10335408

txt 约瑟夫环问题求解算法c语言源代码.txt

#define N 100 int yuesefu1(int data[],int sum,int k) { int i=0,j=0,count=0; while(count
www.eeworm.com/read/162016/10345627

txt 问一个问题:类的动态装载.txt

作者:何志强 email: hhzqq@21cn.com 日期:8/20/2001 11:10:12 AM 在Java中有这样一个功能:知道一个类名,就可以通过Class.forName(...)的方法将该类动态装入,然后就可以创建实例。我不知道C++中有否这种功能?如果没有,有没有好的方法实现? 谢谢大家,:)
www.eeworm.com/read/279550/10421184

txt 球和盒子的组合问题 动态规划式.txt

#include #include #include #include #include using namespace std; //球和盒子的组合问题 Push Button Lock //浙大ACM 2775 #define MAX 13 long c[MAX][MAX];
www.eeworm.com/read/279550/10421280

txt 求最大子段和问题,分治递归法.txt

#include #include #include //求最大子段和问题,分治递归法 /* 输入: 9 -20 11 3 -2 15 -30 12 1 5 输出: 27 */ int maxsum(int s[],int left,int right) { int center; int