码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
centos 7 安装django 简单脚本
#!/bin/sh [!-d"~/temp/"]&&mkdir~/temp/ cd~/temp/ echo"###downloadsetuptool" wgethttps://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.egg#md5=fe1f997bc722265116870bc7919059ea--no-check-certificate echo"###installsetuptool" bashse..
分类:其他好文   时间:2017-04-12 22:20:18    阅读次数:163
oracle数据库添加新用户
/*分为四步 */ /*第1步:创建临时表空间 */ create temporary tablespace kmyf_temp tempfile 'E:\app\pangxy\product\11.2.0\dbhome_1\kmyf_temp.dbf' size 50m autoextend on ...
分类:数据库   时间:2017-04-12 12:40:41    阅读次数:258
拓扑排序
#include<iostream>using namespace std;struct huan{ int node; bool isfound; int start;};int min(int a,int b){ int temp; if(a>b){ temp=a; a=b; b=temp; / ...
分类:编程语言   时间:2017-04-10 23:22:00    阅读次数:345
从字符串中区分数字与字母并进行下一步操作
str为你要测试的字符串 第一种方法: byte[] temp = str.getBytes();//使用平台默认的字符集将此 String 解码为字节序列,并将结果存储到一个新的字节数组中。 int count = 0; //遍历数组的每一个元素,也就是字符串中的每一个字母 for(int i=0 ...
分类:其他好文   时间:2017-04-10 09:39:40    阅读次数:156
随机数
Random rad = new Random(); String [] temp={"a","b","c","d","e"}; ArrayList list = new ArrayList(); for (int j = 0; j < temp.length; j++) { list.add(te ...
分类:其他好文   时间:2017-04-09 15:03:02    阅读次数:173
MySQL存储过程---涉及多个表之间的关联关系,且各表中具有相同的字段,以主键id 为例,一定要使用 xx.id加以区分
此篇不放存储过程实例了。 这是我在开发存储过程中碰到的耗时最久的一次问题,存储过程可以跑,但是得到的结果不是自己想要的, 排查了很久,发现是此句中的id惹的祸: SET projectInfoId =(SELECT id FROM temp.PROJECT_INFO p WHERE 1=1 AND ...
分类:数据库   时间:2017-04-08 18:18:38    阅读次数:362
TopCoder代码格式模板
1 $BEGINCUT$ 2 $PROBLEMDESC$ 3 $ENDCUT$ 4 #include<bits/stdc++.h> 5 using namespace std; 6 typedef long long LL; 7 typedef pair<int,int> pii; 8 9 temp ...
分类:其他好文   时间:2017-04-08 11:10:44    阅读次数:205
Eclipse下载和Android环境搭建
参考: Eclipse搭建Android环境: https://my.oschina.net/plumsoft/blog/29283?p=4&temp=1491599082792#blog-comments-list Android SDK Manager要下载的东西: https://www.zh ...
分类:移动开发   时间:2017-04-08 09:43:02    阅读次数:326
数组排序
<script type="text/javascript"> //1、选择排序 /*var arr=[11,4,7,20,5,800,3,6,9]; var temp; for(var i=0;i<arr.length;i++){ var minIndex=i;//假设i的值为最小值的索引; fo ...
分类:编程语言   时间:2017-04-08 01:00:26    阅读次数:272
选择排序
<script type="text/javascript"> /*var arr=[11,4,7,20,5,800,3,6,9]; var temp; for(var i=0;i<arr.length;i++){ var minIndex=i;//假设i的值为最小值的索引; for(var j=i ...
分类:编程语言   时间:2017-04-08 00:53:16    阅读次数:183
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!