gavanwanggw

导航

上一页 1 ··· 145 146 147 148 149 150 151 152 153 ··· 165 下一页

2017年4月21日 #

UVALive 6529 Eleven 区间dp

摘要: 题目链接:点击打开链接 题意: 给定一个数,又一次排列这个数的各个位置使得 1、无前导0 2、能被11整除 问: 有多少种组合方法 #include <cstdio> #include <cstring> #include <algorithm> using namespace std; typed 阅读全文

posted @ 2017-04-21 14:18 gavanwanggw 阅读(141) 评论(0) 推荐(0) 编辑

jquery 实现菜单的下拉菜单

摘要: 实现效果如图: 源码: 到此下载 实现效果如图: 源码: 到此下载 阅读全文

posted @ 2017-04-21 13:36 gavanwanggw 阅读(104) 评论(0) 推荐(0) 编辑

数字图像和视频处理的基础-第4周运动预计matlab练习题

摘要: In this problem you will perform block matching motion estimation between two consecutive video frames. Follow the instructions below to complete this 阅读全文

posted @ 2017-04-21 12:05 gavanwanggw 阅读(207) 评论(0) 推荐(0) 编辑

setjmp与longjmp

摘要: 在C中有时我们会使用goto语句用于运行跳转,可是不能跨越函数 #include <stdio.h> void func2() { int num = 0; dst2: if (num > 0) { printf("func1()\n"); func3(); } if (num == 1) retu 阅读全文

posted @ 2017-04-21 10:45 gavanwanggw 阅读(159) 评论(0) 推荐(0) 编辑

ZOJ - 3725 Painting Storages

摘要: Description There is a straight highway with N storages alongside it labeled by 1,2,3,...,N. Bob asks you to paint all storages with two colors: red a 阅读全文

posted @ 2017-04-21 09:26 gavanwanggw 阅读(157) 评论(0) 推荐(0) 编辑

Java Collection之Queue具体解释及用途

摘要: Queue是一种常见的数据结构,其主要特征在于FIFO(先进先出),Java中的Queue是这样定义的: public interface Queue<E> extends Collection<E> { E element(); boolean offer(E o); E peek(); E po 阅读全文

posted @ 2017-04-21 08:34 gavanwanggw 阅读(1060) 评论(0) 推荐(0) 编辑

动态链表增删改查及排序功能

摘要: 主要功能的实现: #include "SeqList.h" void InitSeqList(SeqList * pSeq)//初始化 { assert(pSeq); pSeq->array = (DataType*)malloc(sizeof(DataType)*DEFAULT_CAPICITY) 阅读全文

posted @ 2017-04-21 08:03 gavanwanggw 阅读(347) 评论(0) 推荐(0) 编辑

2017年4月20日 #

Segmentation fault (core dumped)

摘要: Segmentation fault (core dumped) 小编一个不小心,将下面程序在11行scanf()中把 ptr 写成了 *ptr,在编译时没问题,但在执行时出现: $/test/src/$ gcc -o app reverse.c -g $/test/src/$ ./app Ente 阅读全文

posted @ 2017-04-20 21:34 gavanwanggw 阅读(1192) 评论(0) 推荐(0) 编辑

Java Jaxb JavaBean与XML互转

摘要: 1.Jaxb - Java Arcitecture for XML Binding 是业界的一个标准,是一项能够依据XML Schema产生Java类的技术。 Jaxb2.0是Jdk1.6的组成部分。不须要在第三方Jar包的支持下就可以完毕Xml与JavaBean的相互转换。 2.重要概念: ·JA 阅读全文

posted @ 2017-04-20 21:12 gavanwanggw 阅读(240) 评论(0) 推荐(0) 编辑

中国版Azure支持那些版本号Linux

摘要: 不在下述列表中的Linux表示尚未经过正式验证,并不意味着不能使用,客户能够通过自行上传镜像文件的方式使用其它Linux版本号,可是不保证是否遇到一些驱动或者兼容问题。 分发 版本号 上次验证时间 驱动程序 内核兼容性修补程序 代理 基本映像 Canonical UBUNTU Ubuntu 12.0 阅读全文

posted @ 2017-04-20 20:53 gavanwanggw 阅读(189) 评论(0) 推荐(0) 编辑

上一页 1 ··· 145 146 147 148 149 150 151 152 153 ··· 165 下一页