摘要:
注意 本文转载自:http://developer.51cto.com/art/201204/331095.htm去年很多朋友私下或新浪微博上在总结自己的职业生涯与职业规划,也感觉到很纠结与彷徨,尤其技术人的职业生 涯,随年龄增加,一些优势逐渐丧失。4月13日数据库技术大会的主办方举行的晚宴上,也让本人支持一个大家感兴趣又贴合实际的话,话题是:三十岁后的IT 人 如何抉择人生路,遗憾的是预订酒店饭桌是几个房间打通的,而不是一个大厅方式(总共:8桌),大家无法围绕在一起,为此只是小范围讨论了下,今天看到曾经 阿里巴巴数据库团队的海波兄弟总结分享,非常有意义,转载给大家共同欣赏!AD:十五年前,你 阅读全文
摘要:
实验一 UTP双绞线的制作一、实验目的理解直连线和交叉线的应用范围,掌握直连线和交叉线的制作方法。二、实验内容制作RJ45网线三、实验环境RJ45卡线钳、水晶头、双绞线、测试仪四、实验原理4.1物理层概述物理层是七层结构中的第一层,物理层的功能就是实现在传输介质上传输各种数据的比特流。物理层并不是物理设备和物理媒体,它定义了建立、维护和拆除物理链路的规范和协议,同时定义了物理层接口通信的标准,包括机械的、电气的、功能的和规程的特性。机械特性定义了线缆接口的形状、引线数目及如何排列等。电气的特性说明哪根线上出现的电压应为什么范围。功能的特性说明某根线上的某一电平的电压代表何种意义。规程的特性则说 阅读全文
摘要:
(1)复杂度O(n) 1 long Prime(long n) 2 3 {memset(a,0,sizeof(a)); 4 5 long i,j,num; 6 7 num=0; 8 9 for(i=2;i<=n;i++)10 11 {if(!a[i]) p[num++]=i;12 13 for(j=0;((j<num)&&(p[j]*i<=n));j++)14 15 {a[p[j]*i]=1;16 17 if(i%p[j]==0) break;18 19 }20 21 }22 23 return num-1;//p数组中存贮的最后一个素数的下标;24 25 } 阅读全文
摘要:
1 #include <cstdlib> 2 #include <iostream> 3 #include <string.h> 4 using namespace std; 5 struct graph{ 6 char map[500][20]; 7 long data[500][500]; 8 long vexnum,arcnum; 9 };10 11 long d[500];//d[500]为度12 long mount=0,p[500];//p[500]存储排序后的信息;13 14 15 16 long find... 阅读全文
摘要:
1 #include <cstdlib> 2 #include <iostream> 3 #include <stdio.h> 4 #include <string.h> 5 #include <conio.h> 6 #define MAZE_INIT_SIZE 50 7 using namespace std; 8 struct P{ 9 int row; 10 int col; 11 int pre; 12 }; 13 14 struct MAZE{ 15 char m[MAZE_INIT_SIZE... 阅读全文
摘要:
1 #include <cstdlib> 2 #include <iostream> 3 #include <queue> 4 #define TREE_NODE_NUM 100 5 6 using namespace std; 7 typedef struct node { 8 char data; 9 struct node *lchild,*rchild; 10 }treenode; 11 12 void Creat_tree(treenode *&bt,char post[],int post_l,int post... 阅读全文
摘要:
1 #include <cstdlib> 2 #include <iostream> 3 #include <stack> 4 #include <queue> 5 #define stacksize 3 6 7 using namespace std; 8 typedef struct sqstack 9 { 10 int data[stacksize]; 11 int top; 12 } SqStackTp; 13 typedef struct linked_queue 14 { 15 int data; 16 ... 阅读全文
摘要:
1 #include <cstdlib> 2 #include <iostream> 3 #include <string.h> 4 #include <stdio.h> 5 #include <conio.h> 6 using namespace std; 7 struct student 8 { 9 char num[20];//学号 10 char name[20];//姓名 11 int foxscore;//fox成绩 12 int cscore;//C语言成绩 13 int englishscore;//英语成绩 14 . 阅读全文
摘要:
1 #include <cstdlib> 2 #include <iostream> 3 #include <conio.h> 4 #include <string.h> 5 #include <stdio.h> 6 #define LIST_INIT_SIZE 100 7 using namespace std; 8 typedef struct{ 9 int *elem; 10 int length; 11 int listsize; 12 }Sqlist;//顺序存储结构; 13 14 15 ... 阅读全文
摘要:
1 #include <cstdlib> 2 #include <iostream> 3 #include <stdio.h> 4 #include <string.h> 5 #include <conio.h> 6 7 8 using namespace std; 9 struct workers 10 { 11 char name[15]; //姓名 12 char department[18]; //单位 13 char gender[5]; //性别 14 int age; //年龄 15 ... 阅读全文
摘要:
1 #include <cstdlib> 2 #include <iostream> 3 #define INIT_SIZE 100 4 #define LISTCREAMENT 10 5 6 using namespace std; 7 /*typedef struct student{ 8 char name[20]; 9 char number[20]; 10 char class_[40]; 11 char phone_number[40]; 12 }student;*/ 13 /*t... 阅读全文
摘要:
DescriptionOnce, in one kingdom, there was a queen and that queen was expecting a baby. The queen prayed: ``If my child was a son and if only he was a sound king.'' After nine months her child was born, and indeed, she gave birth to a nice son. Unfortunately, as it used to happen in royal fa 阅读全文
摘要:
DescriptionYou are given n closed, integer intervals [ai, bi] and n integers c1, ..., cn. Write a program that: reads the number of intervals, their end points and integers c1, ..., cn from the standard input, computes the minimal size of a set Z of integers which has at least ci common elements wit 阅读全文
摘要:
如果一个系统由n个变量和m个约束条件组成,其中每个约束条件形如Xj-Xi<=bk(i,j∈[1,n],k∈[1,m]),则称其为差分 约束系统(system of difference constraints)。亦即,差分约束系统是求解关于一组变量的特殊不等式组的方法。 假设有如下不等式组: X2- 阅读全文
摘要:
⑴随机产生或键盘输入一组元素,建立一个带头结点的单向链表(无序)。⑵遍历单向链表。⑶把单向链表中元素逆置(不允许申请新的结点空间)。⑷在单向链表中删除所有的偶数元素结点。⑸编写在非递减有序链表中插入一个元素使链表元素仍有序的函数,并利用该函数建立一个非递减有序单向链表。⑹利用算法5建立两个非递减有序单向链表,然后合并成一个非递增链表。⑺利用算法5建立两个非递减有序单向链表,然后合并成一个非递减链表。⑻利用算法1建立的链表,实现将其分解成两个链表,其中一个全部为奇数,另一个全部为偶数(尽量利用已知的存储空间)⑽在主函数中设计一个简单的菜单,分别调试上述算法。 1 #include <cst 阅读全文
摘要:
⑴利用尾插法建立一个双向链表。⑵遍历双向链表。⑶实现双向链表中删除一个指定元素。⑷在非递减有序双向链表中实现插入元素e仍有序算法。⑸判断双向链表中元素是否对称若对称返回1否则返回0。⑹设元素为正整型,实现算法把所有奇数排列在偶数之前。⑺在主函数中设计一个简单的菜单调试上述算法。(4)实验四 栈和队列的有关操作⑴采用链式存储实现栈的初始化、入栈、出栈操作。⑵采用顺序存储实现栈的初始化、入栈、出栈操作。⑶采用链式存储实现队列的初始化、入队、出队操作。⑷采用顺序存储实现循环队列的初始化、入队、出队操作。⑸在主函数中设计一个简单的菜单,分别测试上述算法。 1 #include <cstdlib& 阅读全文
摘要:
Calculate a + b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less than four digits).InputEach input file contains one test case. Each case contains a pair of integers a and b where -1000000 <= a, b <= 1000000. T 阅读全文
摘要:
This time, you are supposed to find A+B where A and B are two polynomials.InputEach input file contains one test case. Each case occupies 2 lines, and each line contains the information of a polynomial: K N1 aN1 N2 aN2 ... NK aNK, where K is the number of nonzero terms in the polynomial, Ni and aNi 阅读全文
摘要:
The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elevator will stop, in specified order. It costs 6 seconds to move the elevator up one floor, and 4 seconds to move down one floor. The elevator will stay 阅读全文
摘要:
Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specification: Each input file contains one test case. Each case occupies one line which contains an N (<= 10100). Output Specification: For each test case, 阅读全文