先看下以下代码#includeusing namespace std;int x = 1;int
f1(){ x = 2; return x;}int f2(){ x = 3; return x;}int main(){ //Test1 cout
<< x << ...
分类:
其他好文 时间:
2014-05-10 01:07:57
阅读次数:
375
错误信息:HTTP Status 404 - There is no Action mapped
for namespace [/] and action name [updateUser!getUserByName] associated with
context path [/123shop].
分类:
其他好文 时间:
2014-05-09 18:04:52
阅读次数:
281
http://acm.hdu.edu.cn/showproblem.php?pid=1598
1 #include 2 #include 3 #include 4 #define maxn 2000 5 using namespace std; 6
const int inf=1<<30; 7...
分类:
其他好文 时间:
2014-05-05 10:53:38
阅读次数:
344
http://acm.hdu.edu.cn/showproblem.php?pid=1599floyd找最小环。 1 #include 2 #include 3
#include 4 #define maxn 200 5 using namespace std; 6 const int inf...
分类:
其他好文 时间:
2014-05-05 10:52:15
阅读次数:
315
朋友碰到一个问题,就是用virtualbox建了一个ubuntu的虚拟机,但虚拟机里面ip地址是自动生成的,主机和虚拟机无法互通信息。也无法在虚拟机里面建web服务器让外网访问。解决方案:
很简单,在虚拟机network里面设置网络模式为 桥接模式(Bridged Adapter)。ok~安装s.....
分类:
其他好文 时间:
2014-05-05 10:47:07
阅读次数:
352
#include "stdafx.h"#include "windows.h"#include
using namespace std;int _tmain(int argc, _TCHAR* argv[]){ STARTUPINFO si;
PROCESS_INFORMATION...
分类:
其他好文 时间:
2014-05-05 10:31:18
阅读次数:
412
1.扩展方法:必须写在一个静态类里面,具体见代码:namespace
ConsoleApplication1{ class Program { static void Main(string[] args) { Student s
= n...
分类:
其他好文 时间:
2014-05-05 09:47:04
阅读次数:
431
这个方程有两种形式,本文采用if(s[i]=s[j])
dp[i][j]=d[i-1][j-1] dp[i][j]=min(dp[i][k]+dp[k+1][j],dp[i][j])
(i=#include#includeusing namespace std;#define min(x,y) (x...
分类:
其他好文 时间:
2014-05-05 09:33:02
阅读次数:
544
行编辑程序、括号匹配检验程序都是利用的栈的数据结构。而这两个
小程序也非常好的显示了栈先进后出的思想。由于程序本身很简短、清晰,所
以也就不做多的解释了,直接上代码了。
行编辑程序:
#include
#include
using namespace std;
int main()
{
stack sta;
char ch = getchar();
while(ch!=EOF)
...
分类:
其他好文 时间:
2014-05-04 18:55:11
阅读次数:
423
DHCP服务器的搭建(服务器本身一般都设置为静态ip地址)准备工作:给服务器本身设置固定ip地址[root@localhost~]#cat/etc/sysconfig/network-scripts/ifcfg-eth0//配置文件#IntelCorporation82545EMGigabitEthernetController(Copper)DEVICE=eth0//设备名为eth0,第一块物理网..
分类:
其他好文 时间:
2014-05-04 17:25:28
阅读次数:
426