虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Int

  • 输入数组作为sort的参数调用sort 即可实现排序(不减序排列) //或者利用重载的方法

    输入数组作为sort的参数调用sort 即可实现排序(不减序排列) //或者利用重载的方法,参数是(Int[] number, 0, number.length-1)

    标签: sort 输入 数组 参数

    上传时间: 2017-08-30

    上传用户:LIKE

  • 第一章JSP简介 例子1(效果如图1.1所示) Example1_1.jsp: < @ page contentType="text/html charset=GB2312" >

    第一章JSP简介 例子1(效果如图1.1所示) Example1_1.jsp: < @ page contentType="text/html charset=GB2312" > <HTML> <BODY BGCOLOR=cyan> <FONT Size=1> <P>这是一个简单的JSP页面 < Int i, sum=0 for(i=1 i<=100 i++) { sum=sum+i } >

    标签: contentType Example charset 2312

    上传时间: 2017-08-31

    上传用户:zycidjl

  • 编写一个程序

    编写一个程序,输出基本数据类型char, short, Int, long, float, double和指针类型void *, char *, short *, Int *, long *, float *, double *的数据类型的长度。

    标签: 编写 程序

    上传时间: 2013-12-26

    上传用户:pompey

  • Per gli Interessati ai metodi della compressione una vera miniera d oro, oltre 70 algoritmi all Int

    Per gli Interessati ai metodi della compressione una vera miniera d oro, oltre 70 algoritmi all Interno di moduli base indipendenti consentono a questo programma di mostrare il loro utilizzo e le loro performances, ecco elencati alcuni di essi : base64/crc32/fibonacci/mtf/freq/adddif/bwt/fix12/fix128/flatter/ huffman/lzw/lzs/rle/lbe/hash/vbc/scrambler, e tanti tanti altri.

    标签: compressione Interessati algoritmi miniera

    上传时间: 2013-12-16

    上传用户:时代电子小智

  • 内容摘要: LHD6000主板主芯片程序 ISD1730时序说明: 参考:void Send_1Byte(uchar ucData_s)和uchar Receive_1Byte(void)的说明.

    内容摘要: LHD6000主板主芯片程序 ISD1730时序说明: 参考:void Send_1Byte(uchar ucData_s)和uchar Receive_1Byte(void)的说明. 应先发"RESET"命令再发"PWR_UP"命令,后发"RESET"命令可能不正常工作. 1730最高地址只有0xFF,所以对指定地址的操作函数的参数使用了"unsigned char"类型, 17系列的其它型号可能才用得到"unsigned Int",借用时注意,将对应注释掉的部分还原.!!

    标签: uchar Byte void ucData_s

    上传时间: 2017-09-11

    上传用户:zm7516678

  • 16进制转十进制

    DATAS SEGMENT w dw 0 keybuf db 255      db 0      db 255 dup(0)      ;定义键盘输入需要的缓冲区 DATAS ENDS STACKS SEGMENT db 200 dup(?) STACKS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:STACKS START: MOV AX,DATAS MOV DS,AX mov dx,offset keybuf     ;用0a号功能,输入一个字符串 mov ah,0ah               ;用回车结束 Int 21h mov dl,0ah               ;再进行换行,以便在下一行显示转换后的字符串  mov ah,2     Int 21h ;  push ax ;   push dx ;      mov dl,cl ;     mov ah,02 ;     Int 21h   ;   pop dx ;  pop ax mov bx,offset keybuf+1   ;取出字符串的字符个数,作为循环的次数 mov cl,[bx] mov ch,0     mov ax,0             again:  inc bx mov ax,[w] push bx mov bx,16 mul bx pop bx            ;是小写字母,则转换为大写字母 mov [w],ax mov dl,[bx]             ;取出一个字符, cmp dl,'9' jbe lab1 cmp dl,'F' jbe lab2 sub dl,32 lab2: sub dl ,07h lab1:  sub dl,30h add [w],dx  loop again   mov ax,[w]  mov bx,-1 push bx mov bx,10 lab3 :mov dx,0 div bx  push dx cmp ax,0 jnz lab3 lab5: pop dx cmp dx,-1 jz lab4 add dl,30h mov ah,02 Int 21h        jmp  lab5            ;循环,处理完整个字符串 lab4:  MOV AH,4CH Int 21H CODES ENDS END START

    标签: 汇编

    上传时间: 2015-04-02

    上传用户:wcc0310

  • toj 4022源代码

    #include <iostream> using namespace std; Int main(){ Int t; cin>>t; while(t--){ long long n; cin>>n; if(n%2==1) cout<<(n*n-1)/4<<endl; else if (n%4==0) cout <<(n*n)/4-1<<endl; else{ if(n==2) cout<<1<<endl; else{ long long k=n/2-1; cout <<k*k+2*k-3<<endl; } } } return 0; }

    标签: 天津大学acm4022 代码

    上传时间: 2015-04-20

    上传用户:nr607

  • 两个链表的交集

    两个链表的交集 #include<stdio.h> #include<stdlib.h> typedef struct Node{   Int data;   struct  Node *next; }Node; void initpoInter(struct Node *p){   p=NULL; } Int  prIntlist(struct Node* head){   Int flag=1;   head=head->next;   /*   因为标记1的地方你用了头结点,所以第一个数据域无效,应该从下一个头元结点开始   */   if(head==NULL)     prIntf("NULL\n");   else   {     while(head!=NULL)     {       if(flag==1)       {       prIntf("%d",head->data);       flag=0;       }       else       {         prIntf(" %d",head->data);       }       head=head->next;     }     prIntf("\n");   }   return 0; } struct Node *creatlist(struct Node *head) {      Int n;    struct  Node *p1=(struct Node *)malloc(sizeof(struct Node));   p1->next=NULL; while(scanf("%d",&n),n!=-1) {   struct Node *pnode=(struct Node *)malloc(sizeof(struct Node));   pnode->next=NULL;      pnode->data=n;   if(head==NULL)     head=pnode;   p1->next=pnode;   p1=pnode; } return head; } struct Node *Intersect(struct Node *head1, struct Node *head2) { struct Node *p1=head1,*p2=head2;/*我这里没有用头指针和头结点,这里是首元结点head1里面就是第一个数据,一定要理解什么事头指针, 头结点,和首元结点 具体你一定要看这个博客:http://blog.sina.com.cn/s/blog_71e7e6fb0101lipz.html*/ struct Node *head,*p,*q; head = (struct Node *)malloc(sizeof(struct Node)); head->next = NULL; p = head; while( (p1!=NULL)&&(p2!=NULL) ) { if (p1->data == p2->data) { q = (struct Node *)malloc(sizeof(struct Node)); q->data = p1->data; q->next = NULL; p->next = q;//我可以认为你这里用了头结点,也就是说第一个数据域无效     **标记1** p = q; p1 = p1->next; p2 = p2->next; } else if (p1->data < p2->data) { p1 = p1->next; } else { p2 = p2->next; } } return head; } Int main() {   struct Node *head=NULL,*headt=NULL,*t;   //initpoInter(head);//这里的函数相当于head=NULL;  // initpoInter(headt);//上面已经写了headt=NULL那么这里可以不用调用这个函数   head=creatlist(head);   headt=creatlist(headt);   t=Intersect(head,headt);   prIntlist(t); }

    标签: c语言编程

    上传时间: 2015-04-27

    上传用户:coco2017co

  • c语言深度剖析

    第一章关键字...................................................................................................................................9 1.1,最宽恒大量的关键字----auto..........................................................................................11 1.2,最快的关键字---- register............................................................................................... 11 1.2.1,皇帝身边的小太监----寄存器............................................................................. 11 1.2.2,使用register 修饰符的注意点.............................................................................11 1.3,最名不符实的关键字----static........................................................................................12 1.3.1,修饰变量...............................................................................................................12 1.3.2,修饰函数...............................................................................................................13 1.4,基本数据类型----short、Int、long、char、float、double........................................... 13 1.4.1,数据类型与“模子”............................................................................................... 14 1.4.2,变量的命名规则...................................................................................................14 1.5,最冤枉的关键字----sizeof...............................................................................................18 1.5.1,常年被人误认为函数...........................................................................................18 1.5.2,sizeof(Int)*p 表示什么意思?........................................................................18 1.4,signed、unsigned 关键字................................................................................................19 1.6,if、else 组合.................................................................................................................... 20 1.6.1,bool 变量与“零值”进行比较...............................................................................20 1.6.2, float 变量与“零值”进行比较.................................................................................21 1.6.3,指针变量与“零值”进行比较...............................................................................21 1.6.4,else 到底与哪个if 配对呢?...............................................................................22 1.6.5,if 语句后面的分号............................................................................................... 23 1.6.6,使用if 语句的其他注意事项.............................................................................. 24 1.7,switch、case 组合........................................................................................................... 24 1.7.1,不要拿青龙偃月刀去削苹果.............................................................................. 24 1.7.2,case 关键字后面的值有什么要求吗?.............................................................. 25 1.7.3,case 语句的排列顺序...........................................................................................25 1.7.4,使用case 语句的其他注意事项..........................................................................27 1.8,do、while、for 关键字................................................................................................... 28 1.8.1,break 与continue 的区别.....................................................................................28 1.8.2,循环语句的注意点...............................................................................................29 1.9,goto 关键字......................................................................................................................30 1.10,void 关键字....................................................................................................................31 1.10.1,void a?............................................................................................................31 1.10,return 关键字................................................................................................................. 34 1.11,const 关键字也许该被替换为readolny....................................................................... 34 1.11.2,节省空间,避免不必要的内存分配,同时提高效率.................................... 35 1.12,最易变的关键字----volatile.......................................................................................... 36 1.13,最会带帽子的关键字----extern.................................................................................... 37 1.14,struct 关键字..................................................................................................................38

    标签: c语言深度剖析

    上传时间: 2015-05-01

    上传用户:cascas

  • 判断奇数或偶数

    判断奇偶数的汇编程序CODE     SEGMENT          ASSUME   CS: CODE START:   MOV      AH,  01H         ; 调用 DOS中断的1号子功能(键入一个字符),          Int      21H              ; AL←键入一位数字          CMP   AL,  30H    ; 若输入比‘0’小的字符则重新输入   JB   START   CMP   AL,  39H    ; 若输入比‘9’大的字符则重新输入   JA   START    CLC                       ; CF标志清0          SHR      AL,  1           ; AL最低位移入CF          JNC      EVN              ; 根据CF的状态,判断输入数字的奇偶性          MOV      BL,  31H         ; 奇数,BL←1的ASCII码          JMP      DISP EVN:     MOV      BL,  30H         ; 偶数,BL←0的ASCII码 DISP:    MOV      AH,  02H         ; 调用DOS中断的2号子功能,输出字符          MOV      DL,  0AH         ; 输出换行          Int      21H          MOV      DL,  0DH         ; 输出回车          Int      21H          MOV      DL,  BL          ; 输出标志字符          Int      21H   mov   ah, 1   Int   21h          MOV      AH, 4CH          ; 返回DOS          Int      21H CODE     ENDS          END      START

    标签:

    上传时间: 2015-06-10

    上传用户:zhuangxj618