自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(104)
  • 资源 (5)
  • 收藏
  • 关注

Cpu0 Backend - td RegisterInfo

Cpu0GenRegisterInfo.inc

2014-05-21 04:46:02 132

原创 Cpu0 Backend - td CallingConvention

CC_Cpu0CC_Cpu0EABIRetCC_Cpu0RetCC_Cpu0EABI

2014-05-21 04:42:53 161

原创 Topcoder-SRM596DIV2-500

#include #include using namespace std;class ColorfulRoad{#define INF 5000public:int getMin(string road){int count=road.length();int D[count];for(int i=1;iD[0]=0;for(int i=1;ifo

2013-12-02 03:35:01 402

原创 Topcoder-SRM596DIV2-250

#include #include #include using namespace std;class FoxAndSightseeing{public:int getMin(vector position){int distanceLess[position.size()];for(int i=1;idistanceLess[i]=abs(position

2013-12-02 03:34:17 383

原创 Topcoder-SRM597DIV2-500

#include #include using namespace std;#include class LittleElephantAndString{public:int getNumber(string A,string B){string tA,tB;tA=A;tB=B;sort(tA.begin(),tA.end());sort(tB.be

2013-12-01 10:13:06 347

原创 Topcoder-SRM597DIV2-250

#include #include #include #include using namespace std;class LittleElephantAndDouble{public:string getAnswer(vector A){sort(A.begin(),A.end());int max=A[A.size()-1];for(int i=0;i

2013-12-01 10:12:17 308

原创 Topcoder-SRM598DIV2-1000

#include using namespace std;class FoxAndFencingEasy{public:string WhoCanWin(int mov1,int mov2,int d){if(mov1>=d)return "Ciel";else if(mov1>2*mov2)return "Ciel";else if(mov2>2*mov1)

2013-12-01 08:43:01 493

原创 Topcoder-SRM598DIV2-500

#include #include #include using namespace std;class BinPackingEasy{public:int minBins(vector item){sort(item.begin(),item.end());int l=0,r=item.size()-1;int ret=0;while(lif(l==r

2013-12-01 08:42:19 357

原创 Topcoder-SRM598DIV2-250

#include #include using namespace std;class ErasingCharacters{public:string simulate(string s){bool disposed=true;while(disposed){disposed=false;for(int i=0;iif(s[i]==s[i+1]){dis

2013-12-01 08:41:13 494

原创 Assignment4 key to Introduction to MATLAB(MIT OPEN COURSEWARE)

rd.mZ=2+5*randn(500,1);mean(Z)std(Z)handlesPractice.mx=[0:2*pi/100:2*pi];y=sin(x);figure;plot(x,y,'r');xlim([0 2*pi]);set(gca,'XTick',[0 pi 2*pi]);set(gca,'XTickLabel

2013-04-01 07:14:36 595

原创 Assignment3 key to Introduction to MATLAB(MIT OPEN COURSEWARE)

hh.mfunction r=hh()[T,Y]=ode45(@rigid,[0 0.2],[0.5 0.5 0.5 -60]);figure;plot(T,Y(:,4));ySS=Y(end,:);for v=1:10hold on;[T,Y]=ode45(@rigid,[0 0.2],[ySS(:,1:3),ySS(:,4)+i]);plot(T,Y

2013-04-01 07:12:11 635

原创 Assignment2 key to Introduction to MATLAB(MIT OPEN COURSEWARE)

tradeShock.mfunction endValue=tradeStock(initialInvestment, price, buy, sell)price=zeros(1,1);peaks=zeros(1,1);lows=zeros(1,1);load('googlePrices.mat','price','peaks','lows');figure;

2013-04-01 07:09:48 929

原创 Assignment1 key to Introduction to MATLAB(MIT OPEN COURSEWARE)

shortProblem.m%1. Scalar variables.a=10;b=2.5*10^23;c=2+3i;d=exp(i*2*pi/3);%2. Vector variables.aVec=[3.14 ,15, 9, 26];bVec=[2.71; 8; 28; 182];cVec=[5:-0.2:-5];dVec=logspace(0,1,10

2013-04-01 07:05:10 628

原创 Research Homepage

Welcome to my research homepage. I will update my recent research milestones on my homepage. Researchers who are interested in my research could contact us for a collaboration!Xiaochu LiuDepartmen

2012-11-19 05:39:40 280

原创 poj 1082 Calendar Game

#include using namespace std;int res[110][12][31];void getnextday(int *y,int *m,int *d){     if(*m==1 || *m==3 || *m==5 || *m==7 || *m==8 || *m==10){            if(*d                     *

2012-10-22 12:12:36 192

原创 poj 1047 Round and Round We Go

#include #include using namespace std;int main(){int round[61][61];int n;int temp[61];string input;while(cin>>input){n=input.length();for(int i=0;ifor(int j=0;jround[i][j]=

2012-10-22 12:12:02 143

原创 poj 1056 IMMEDIATE DECODABILITY

#include #include using namespace std;#define MAXSIZE 65535int decodablef(char* a,char* b);int main(){string input;char array[MAXSIZE][11];int csize;bool decodable=true;int index

2012-10-22 12:11:26 132

原创 poj 1003 Hangover

#include using namespace std;#define MAXSIZE 300int main(){double res[MAXSIZE];res[0]=0;res[1]=1.0/2;for(int i=2;ires[i]=res[i-1]+1.0/(i+1);//cout}double input;cin>>input;

2012-10-22 12:09:56 139

原创 poj 1046 Color Me Less

#include using namespace std;int main(){int largeSet[16][3];for(int i=0;icin>>largeSet[i][0];cin>>largeSet[i][1];cin>>largeSet[i][2];//cout}int x,y,z;cin>>x;cin>>y;cin>>z

2012-10-22 12:09:19 246

原创 poj 1004 Financial Management

#include #include using namespace std;int main(){double balance;double totalbalance=0;for(int i=0;icin>>balance;totalbalance+=balance;}coutreturn 0;}

2012-10-22 12:08:48 241

原创 poj 1028 Web Navigation

#include #include #include using namespace std;int main(){string input;string url;stack past;stack future;past.push("http://www.acm.org/");/*past.push("hello1");past.push("hell

2012-10-22 12:07:04 248

原创 poj 1163 The Triangle

#include using namespace std;#define MAX 250int main(){int array[MAX][MAX];int N;cin>>N;for(int i=1;ifor(int j=1;jcin>>array[i][j];}}for(int i=0;iarray[i][0]=0;array[i][i+1

2012-10-22 12:05:19 232

原创 poj 1159 Palindrome

#include #include #define MAX 5002using namespace std;unsigned short array [MAX][MAX];int main(){int N;cin>>N;string input;cin>>input;//coutmemset(array,0,sizeof(array));for(in

2012-10-22 12:04:38 227

原创 poj 1125 Stockbroker Grapevine

#include using namespace std;int main(){int array[101][101];int n;while(cin>>n){if(n==0)break;for(int i=1;ifor(int j=1;jarray[i][j]=0xffff;}}for(int i=1;iint m;cin>>m;for

2012-10-22 12:03:38 258

原创 poj 1080-Human Gene Functions

#include #include using namespace std;int max(int x,int y,int z);int geta(char x,char y);int t[202][202];int main(){int casenum;//freopen("in.txt","r",stdin);cin>>casenum;while(cas

2012-07-31 22:11:42 240

原创 poj 1051-P,MTHBGWB-Greater New York 2001

#include #include using namespace std;int getLength(char temp);string getMorse(char temp);char getLetter(char* num,int ci,int l);int main(){int m;cin>>m;cin.get();int num[101];in

2012-07-30 13:26:23 546

原创 poj 1068-Parencodings-Tehran 2001

#include using namespace std;int main(){int n,m=0,temp;int x=0;char seq[21];int index=0;cin>>n;for(int i=0;icin>>m;index=0;for(int j=0;jtemp=x;cin>>x;if(j==0){//coutfor

2012-07-30 11:48:06 285

原创 俄罗斯方块核心算法实现c++

class Algo{public:Algo(int w,int h);void nextSec();void nextShape();void changeShape();void showShape();void showShape2();void start();bool inRec(int x,int y);void left();void ri

2012-07-29 19:59:31 542

原创 扫雷核心算法c++实现

#include  #include  #include  using namespace std; class Algo{public:Algo(int w=10,int h=10);void show();void flip(int x,int y);bool satisfy(int x,int y);private:int w,h;int**

2012-07-25 15:50:24 592

原创 Topcoer-YahtzeeScore-146-Div2-250 Points

public class YahtzeeScore {public static void main(String args[]) {new YahtzeeScore();}public YahtzeeScore() {int[] t = { 5, 3, 5, 3, 3 };System.out.println(maxPoints(t));}publ

2012-07-20 08:50:10 182

原创 Topcoer-VendingMachine-SRM-145-DIV 2

import java.util.StringTokenizer;public class VendingMachine {public static void main(String args[]) {new VendingMachine();}public VendingMachine() {String[] prices ={"100 200 300"

2012-07-20 08:49:43 222

原创 Topcoer-UnluckyIntervals-SRM438-Div1

public class UnluckyIntervals {public static void main(String args[]){new UnluckyIntervals();}public UnluckyIntervals(){int[] luckySet={5, 11, 18};int[] result=getLuckiest(luckySet,9);

2012-07-20 08:49:19 196

原创 Topcoer-single round-Time

public class Time {public Time(){System.out.println(whatTime(3661));}public String whatTime(int seconds){int hour;int min;int sec;hour=seconds/3600;seconds=seconds%3600;min=secon

2012-07-20 08:48:55 178

原创 Topcoer-RectangularGrid-SRM-146

public class RectangularGrid {public  static void main(String args[]){new RectangularGrid();}public RectangularGrid(){System.out.println(countRectangles(592,964));}public long countRecta

2012-07-20 08:48:35 177

原创 Topcoer-single round-RandomColoringDiv2

public class RandomColoringDiv2 {public static void main(String args[]) {new RandomColoringDiv2();}public RandomColoringDiv2() {System.out.println(getCount(6, 9, 10, 1, 2, 3, 4, 10));}

2012-07-20 08:48:02 237

原创 Topcoer-single round-PowerOutage

public class PowerOutage {public static void main(String args[]) {new PowerOutage();}public int Count = 0;public int TotalCount = 0;boolean[] walked = new boolean[50];public Powe

2012-07-20 08:47:40 184

原创 Topcoer-single round-PouringWater

public class PouringWater {public static void main(String args[]) {new PouringWater();}public PouringWater() {// System.out.println(getMinBottles(3, 1));System.out.println(getMinBottle

2012-07-20 08:46:14 211

原创 Topcoer-single round-PlatypusPaternity

public class PlatypusPaternity {public static void main(String args[]) {new PlatypusPaternity();}public PlatypusPaternity() {String[] f = { "YYNNYYNNYYNN", "YNYNYNYNYNYN", "YYYNNNYYYNNN"

2012-07-20 08:45:52 174

原创 Topcoer-single round-PeopleCircle

public class PeopleCircle {public static void main(String args[]) {new PeopleCircle();}public PeopleCircle() {// String ret="mmmm";// int index=0;// System.out.println(ret.substring(

2012-07-20 08:45:24 184

原创 Topcoer-single round-PasswordXGuessing

public class PasswordXGuessing {public static void main(String args[]) {new PasswordXGuessing();}public PasswordXGuessing() {String[] g = {"4747", "4747", "4747", "4747"};System.out.pr

2012-07-20 08:44:55 201

一本xml中文学习宝典

描述了xml的基本使用方法,结合jsp演示了许多具体的使用方法。

2010-12-09

java教务处系统-山大

山东大学计算机学院数据库课程设计-教务处管理系统。

2010-12-07

java面向对象课程设计 纸牌

山东大学计算机学院 面向对象课程设计 纸牌

2010-12-07

山东大学计算机学院大三面向对象课程设计

山东大学计算机学院大三面向对象课程设计 吉他店-乐器店-扩展

2010-12-07

面向对象课程设计

满分面向对象作业。 山东大学计算机学院大三面向对象课程设计。

2010-12-07

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除