摘要:
private void BindChartControl(DataTable dataTable,ChartControl chartControl,int[] columnNO,ViewType viewType) { chartControl.Series.Clear(); int num = columnNO... 阅读全文
摘要:
1 /// 2 /// 对对象进行深度拷贝 3 /// 4 /// 5 /// 6 private object Clone(object obj) 7 { 8 MemoryStream memory_stream = new MemoryStream... 阅读全文
摘要:
1 package javaNet.Instance.ImageDownload; 2 3 import java.io.BufferedReader; 4 import java.io.File; 5 import java.io.FileOutputStream; 6 impor... 阅读全文
摘要:
import urllib.requestimport osimport reurl=r'http://image.baidu.com/search/index?tn=baiduimage&ipn=r&ct=201326592&cl=2&lm=-1&st=-1&fm=index&fr=&sf=1&f... 阅读全文
摘要:
import sysimport urlib.parseimport urllib.requestimport http.cookiejarimport randomimport mathimport os.pathimport hashlibimport jsonimport binascii#c... 阅读全文
摘要:
#include "iostream"using namespace std;void swap(char a[],int i,int j){ char temp; temp=a[i]; a[i]=a[j]; a[j]=temp;}void permutation(char ... 阅读全文
摘要:
思想:先顺时针打印一圈,再打印剩下的矩阵,直到最后的矩阵的行或列为0为止;#include "iostream"using namespace std;void main(){ int a[3][4]={{1,2,3,4},{8,7,6,5},{1,2,3,4}}; int m=3,n=... 阅读全文
摘要:
思路:利用排列思想,进行递归;#include "iostream"using namespace std;char b[10];void pick_one(char a[],int num[],int n){ if(n==6){ b[n]='\0'; co... 阅读全文
摘要:
思路:现将整个字符串反转,再将每个单词反转;#include "iostream"#include "cstring"using namespace std;void reverse_word(char*p,char*q){ char temp; while(q>p){ t... 阅读全文
摘要:
// reverselink.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"struct Node{ int num; struct Node*next;};typedef struct Node Node;Node * createLink(){ ... 阅读全文