快速排序算法。python实现。 1 # -*- coding: utf8 -*- 2 3
import random 4 5 def partition(mylist, low, high): 6 pivotkey = mylist[low] 7
while low = piv...
分类:
其他好文 时间:
2014-05-17 01:25:40
阅读次数:
305
1 #include 2 #include 3 using namespace std; 4
5 int main() 6 { 7 int n; 8 double max,min,sum,aver; 9 double a[110] = {0};10
while...
分类:
其他好文 时间:
2014-05-16 22:47:35
阅读次数:
452
1 #include 2 3 using namespace std; 4 5 int
is_prime(int ); 6 int main() 7 { 8 int x,y,val; 9 while (cin>>x>>y
&& x||y)10 {11 ...
分类:
其他好文 时间:
2014-05-16 22:43:26
阅读次数:
335
今天写一个测试demo,遇到如下问题:Error
Domain=ASIHTTPRequestErrorDomain Code=5 "Unable to create request (bad url?)"
UserInfo=0x69ba0f0 {NSLocalizedDescription=Unab...
分类:
其他好文 时间:
2014-05-16 22:19:42
阅读次数:
310
原题:
Say you have an array for which the ith element is the price of a given stock on day i.
If you were only permitted to complete at most one transaction (ie, buy one and sell one share of th...
分类:
其他好文 时间:
2014-05-13 14:12:41
阅读次数:
342
<?php
if(isset($_GET[‘type‘])&&$_GET[‘type‘]=="send"){
if($_FILES[‘userfile‘][‘error‘]==0){
/*echo‘FileName:‘.$_FILES[‘userfile‘][‘name‘].‘<br>‘;
echo‘FileType:‘.$_FILES[‘userfile‘][‘type‘].‘<br>‘;
echo‘FileSize:‘.$_FILES[‘userfile‘][..
分类:
Web程序 时间:
2014-05-13 13:18:26
阅读次数:
301
//读取本地图片写到jsp页面Filefile=newFile("D:/parking/A区12号.jpg");ServletOutputStreamout=null;InputStreamin=null;try{in=newFileInputStream(file);response().setContentType("multipart/form-data");inttempbyte;out=response().getOutputStream();while((tempbyte=..
分类:
Web程序 时间:
2014-05-13 13:15:20
阅读次数:
305
按javaweb王者归来做strut2练习使用<struts:headtheme:"ajax">报错org.apache.jasper.JasperException:Template/template/ajax/head.ftlnotfound加入struts2-dojo-plugin-2.1.6包并在jsp里引入<%@taglibprefix="sx"uri="/struts-dojo-tags"%><sx:head/>这是..
分类:
Web程序 时间:
2014-05-13 13:00:55
阅读次数:
854
在C中,出错信息一般通过errno来处理,一般有两种方式,一种是用标准的errno全局变量,另一种是自己定义错误码,然后在出错时返回错误码。但这里就涉及到一个线程安全的问题。那在Golang中是如何处理的呢?Golang和Python一样支持多值返回。和C一样,Golang也可以通过返回错误..
分类:
其他好文 时间:
2014-05-13 12:08:35
阅读次数:
699
Apps that play audible content to the user while in
the background, such as a music player app (音频,如音乐播放)Apps that keep users
informed of their locati...
分类:
移动开发 时间:
2014-05-13 10:54:43
阅读次数:
441