-2

sunkaidong (已有 355226 次访问)

日志

最新 3 篇

全部

  • 0-1背包的动态规划
    #include "stdafx.h" #define N 10 #define W 3 int mv ; int pack( int (&w) ,int (&v) ) {     for(int i=0;i<

    阅读全文|07-18 22:16|没有评论

  • (转)30分钟学STL
    原名是《using stl》,不知道是谁写的。不过我倒觉得很有趣,所以化了两个晚上把它翻译出来。我没有对翻译出来的内容校验过。如果你没法在三十分钟内觉得有所

    阅读全文|05-20 11:34|没有评论

  • java面试题
    Java基础方面: 0、作用域public,private,protected,以及不写时的区别 答:区别如下: 作用域 当前类 同一package 子孙类 其他package public √ √ √ √

    阅读全文|05-12 10:53|没有评论

群组

感兴趣的技术
Java Web 开发

留言板

最新留言

全部

  • Ethip
    Ethip 2008-06-22 08:29
    楼下那MM是我介绍的...!!!
  • jixuejava1
    jixuejava1 2008-06-02 12:49
    heihei 路过看看 你 呵呵
  • 双鱼淼
    双鱼淼 2008-05-07 13:42
    拜托,我知道你会做那道C语言题,虽然题很老了,但我还是不会,快帮我弄弄吧,两点就要交作业了。
  • hua_shao1988
    hua_shao1988 2008-04-24 20:57
    请问下VS2003;VC++06哪个用于做底成驱动好//
  • 2008-03-22 00:03
    #include<stdio.h> #include<stdlib.h> typedef struct Polynode { int coef; int exp; struct Polynode *next; } Polynode, *Polylist; Polylist polycreat(); void polyadd(Polylist polya,Polylist polyb); void get_derivative(Polylist polyc); void display(Polynode *h); void polymul(Polylist polya,Polylist polyb); void main() { Polynode *polya,*polyb,*polyc,*r; printf("putin coef and exp\n"); polya=polycreat(); r=polya->next; ...