摘要:
数据结构(date structure)是计算机中储存,组织数据的方式.通常情况下,精心选择的数据结构可以带来最优效率(短小精悍)的算法.---------------------数据结构和算法是紧密相关的.例一: 怎样在书架上放置一些书籍(给了你一些数据和一些储存空间你应该怎样将这些数据储存起来)... 阅读全文
摘要:
#include #include #include #include #include #include #define len sizeof(struct student) using namespace std; struct student { long num; float score; struct student *next; ... 阅读全文
摘要:
#include#includeusing namespace std; //擦 ,好像 忘了这个东西..void inv (int x[],int n);//形参 接收数组的方法....int main(){ int a[100],n,i,j; while(scanf("%d... 阅读全文
摘要:
现在处于一种 指针不熟 链表不会的状态.....先附上一个 书上的输入代码再说.........汗,先存起来 去看指针吧.....#include#include#define len sizeof(struct student)//宏定义 len为 结构体的长度struct student... 阅读全文
摘要:
#includestruct student{ int num; char name[20]; float score;};int main(){ int i,j; struct student stu[5],temp; for(i=0;istu[j+1].sco... 阅读全文
摘要:
分拆素数和Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 28685 Accepted Submission(s): 12471Pro... 阅读全文
摘要:
1. a ⊕ a = 02. a ⊕ 0 = a3. a ⊕ b = b ⊕ a4. a ⊕b ⊕ c = a ⊕ (b ⊕ c) = (a ⊕ b) ⊕ c;5. d = a ⊕ b ⊕ c 可以推出 a = d ⊕ b ⊕ c.6. a ⊕ b ⊕ a = b.7.若x是二进制数0101,y是二... 阅读全文
摘要:
注:网上搜的第一篇 1001 这个就不用说了吧1002 简单的大数1003 DP经典问题,最大连续子段和1004 简单题1005 找规律(循环点)1006 感觉有点BT的题,我到现在还没过1007 经典问题,最近点对问题,用分治1008 简单题1009 贪心1010 搜索题,剪枝很关键1011 10 阅读全文
摘要:
//最恶心人的大数问题...我怕要让你看到我更恶心!!!!!!!!!!!!!!! #include #include int i,j,m,n,b,c,a[11111]; int main() { while(scanf("%d",&n)!=EOF) { memset(a,0,sizeof(a)); m=0; a[0]=1; ... 阅读全文
摘要:
同一题在是用数组和不使用数组的时候在是用数组的时候 数组开得太大导致内存太大,数组开得太小导致访问越界,所以精良不开数组.并且以后在写程序的时候养成用__int64的好习惯..........尽量少犯那些操蛋而又让人无能为力的错...下面附上正确代码#include__int64 max(__int... 阅读全文