码迷,mamicode.com
首页 > 2015年04月05日 > 全部分享
第5周项目3-用多文件组织多个类的程序-对象作数组成员
/* * Copyright (c) 2015, 烟台大学计算机学院 * All rights reserved. * 文件名称:test.cpp * 作 者:刘畅 * 完成日期:2015年 4 月 5 日 * 版 本 号:v1.0 * * 问题描述: 本项目设计一个三角形类,其数据成员不再是三角形三条边的边长,而是三角形的三个...
分类:编程语言   时间:2015-04-05 17:36:03    阅读次数:147
hibernate 数据库方言
hibernate 配置数据库方言   在开发hibernate的程序时,需要进行SessionFactory的配置,简单地说,也就是建立与数据库之间连接的配置,在hibernate中一般使用xml文件来进行配置,但是在该文件的配置中需要设置dialect方言属性值,对于不同的数据库,方言的值dialect是不同的,那么下面就列出在不同的数据库中如何设置该dialect值(参见下表):...
分类:数据库   时间:2015-04-05 17:35:03    阅读次数:129
例题7-1 除法 UVa725
1.题目描述:点击打开链接 2.解题思路:本题利用暴力搜索解决。直接从1234开始枚举除数,由于乘积不能超过100000,所以上限是100000/n。然后判断得到的乘积和除数中的所有数是否都各不相同即可。 3.代码: #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #...
分类:其他好文   时间:2015-04-05 17:34:41    阅读次数:133
SPOJ - QTREE (树链剖分)
基础的树链剖分题目,不过是边权,可以向下映射成点权或者按边剖分。 VIEW CODE #include #include #include #include #include #include using namespace std; const int mmax=10010; const int inf=0x3fffffff; struct edge { int st,en,cos...
分类:其他好文   时间:2015-04-05 17:35:02    阅读次数:116
swing实现计算器
代码如下 import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.util.Vector; public class Calculator { String str1 = "0"; // 运算数1 初值一定为0 为了程序的安全 String str2 = "0"; // 运算数...
分类:Windows程序   时间:2015-04-05 17:35:20    阅读次数:334
ZOJ3203--Light Bulb(三分法)
Compared to wildleopard's wealthiness, his brother mildleopard is rather poor. His house is narrow and he has only one light bulb in his house. Every night, he is wandering in his incommodious house, t...
分类:其他好文   时间:2015-04-05 17:36:10    阅读次数:235
拓扑排序欢乐多
拓扑排序 拓扑排序 一:使用DFS实现二:使用入度概念以及队列处理1.使用一般队列2.使用优先队列(这里定义越大的整数拥有越大的优先级) 一:使用DFS实现 #include bits/stdc++.h>using namespace std;#define maxn 10000 + 10int c[maxn],topo[ma...
分类:编程语言   时间:2015-04-05 17:33:41    阅读次数:132
LeetCode Search a 2D Matrix
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers in each row are sorted from left to right.The first integer of each...
分类:其他好文   时间:2015-04-05 17:33:31    阅读次数:125
安卓流式布局
安卓流式布局,经常用在  历史搜索框、人物标签 等安卓功能中, 对于没有经验的同学来说,要自己写流式成册确实是一个难点,或者写出来的自定义布局的运行效率也不高,这里是我自己整理出的一个非常好的例子, 拿出来跟大家交流学习。 1、 FlowViewGroup 类的java代码如下 package com.snippet.worklearn; import android.conte...
分类:移动开发   时间:2015-04-05 17:35:38    阅读次数:184
c++模板元编程一:基本概念
1 基本概念1.1 meta program 元程序可以用meta program生成object program, 也可以object program作为数据看待,从而组装出更大的object program 元程序是处理程序的程序,如大家熟悉的编译器、解释器、类型检查器、定理证明器、程序生成器、转换系统和程序分析器等等1.2 object program 目标程序目标程序,又称为“目的程序”,...
分类:编程语言   时间:2015-04-05 17:33:38    阅读次数:157
例题7-2 最大乘积 UVa11059
1.题目描述:点击打开链接 2.解题思路:本题利用暴力搜索解决,由于n,S的范围都比较小,直接利用三重循环枚举。又最大可能乘积不会超过10^18,因此结果用long long保存。注意枚举的时候起点和终点可以重合。 3.代码: #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #incl...
分类:其他好文   时间:2015-04-05 17:33:09    阅读次数:136
神舟在线商城做得太烂了
神舟在线商城做得太烂了...
分类:其他好文   时间:2015-04-05 17:32:48    阅读次数:115
Plus One -- leetcode
Given a non-negative number represented as an array of digits, plus one to the number. The digits are stored such that the most significant digit is at the head of the list. class Solution { p...
分类:其他好文   时间:2015-04-05 17:33:17    阅读次数:89
c++模板元编程二:用enum做数值计算
2.1 用enum做数值计算下面两篇文章都介绍了模板元编程,enum是其最重要的基本工具 http://www.codeproject.com/Articles/3743/A-gentle-introduction-to-Template-Metaprogramming https://www10.informatik.uni-erlangen.de/~pflaum/pflaum/ProSemin...
分类:编程语言   时间:2015-04-05 17:31:44    阅读次数:118
[LeetCode]Unique Paths
题意: https://leetcode.com/problems/unique-paths/ A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at a...
分类:其他好文   时间:2015-04-05 17:33:39    阅读次数:105
c++模板元编程三:循环展开
2.2 loop unrolling 循环展开前面enum一节介绍的是和template联合,引发编译器递归的奇妙作用。template本身无需enum配合也可以达到递归的效果。// test template recursive for loop unrolling cout << "test 2: template recursive for loop unrolling" << en...
分类:编程语言   时间:2015-04-05 17:32:12    阅读次数:222
Xcode个人常用快捷键
Xcode个人常用快捷键导航快捷键command+1-8:打开 Project/Symbol/Find/Issue/Test/Debug/Breakpoint/Log 导航栏command+0:显示/隐藏 左侧 tool paneloption+command+0:显示/隐藏 右侧 tool paneloption+command+1:显示 右侧 the file inspectoroption+c...
分类:其他好文   时间:2015-04-05 17:31:45    阅读次数:120
1477条   上一页 1 ... 31 32 33 34 35 36 37 ... 87 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!