Ubuntu 14.04 设置Android开发环境

伸展树模版真的好长好长。。。

cut a b c:把第a-1个数伸展到根节点,把第b+1个数伸展到a的右子树,然后把ch[ch[root][1][0]]拿掉,放在剩下的树的第c个节点下。

flip a b:把第a-1个数伸展到根节点,把第b+1个数伸展到a的右子树,然后翻转ch[ch[root][1][0]];

由于会出现操作两边的情况,所以加了两个-1节点。

注意:

1,输出的时候要注意空格和换行。

2,在拿掉子树的时候要注意push_up();

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<iostream>
#include<vector>
using namespace std;
#define maxn 330000
#define mem(a,b) memset(a,b,sizeof(a))
#define root10 ch[ch[root][1]][0]
#define root1 ch[root][1]
int pre[maxn],ch[maxn][2],root,tot;
int size[maxn];
int rev[maxn];
int key[maxn];
int n;
void Treaval(int x) {
    if(x) {
        Treaval(ch[x][0]);
        printf("结点%2d:左儿子 %2d 右儿子 %2d 父结点 %2d size = %2d ,key = %2d \n",x,ch[x][0],ch[x][1],pre[x],size[x],key[x]);
        Treaval(ch[x][1]);
    }
}
void debug() {printf("%d\n",root);Treaval(root);}
//以上Debug
void init()
{
    root=tot=0;
    mem(pre,0);
    mem(ch,0);
    mem(size,0);
    mem(rev,0);
}
void newnode(int &x,int k,int father)
{
    x=++tot;
    pre[x]=father;
    size[x]=1;
    ch[x][0]=ch[x][1]=0;
    rev[x]=0;
    key[x]=k;
}
void push_down(int x)
{
    if(rev[x])
    {
        rev[x]=0;
        rev[ch[x][0]]^=1;
        rev[ch[x][1]]^=1;
        swap(ch[x][0],ch[x][1]);
    }
}
void push_up(int x)
{
    size[x]=size[ch[x][0]]+size[ch[x][1]]+1;
}
void rot(int x,int kind)
{
    int y=pre[x];
    push_down(y);
    push_down(x);
    ch[y][!kind]=ch[x][kind];
    pre[ch[x][kind]]=y;
    if(pre[y])ch[pre[y]][ch[pre[y]][1]==y]=x;
    pre[x]=pre[y];
    ch[x][kind]=y;
    pre[y]=x;
    push_up(y);
    push_up(x);
}
void splay(int x,int goal)
{
    push_down(x);
    while(pre[x]!=goal)
    {
        if(pre[pre[x]]==goal)
        {
            push_down(pre[x]);
            push_down(x);
            rot(x,ch[pre[x]][0]==x);
        }
        else
        {
            int y=pre[x];
            push_down(pre[y]);
            push_down(y);
            push_down(x);
            int kind=ch[pre[y]][0]==y;
            if(ch[y][kind]==x)
            {
                rot(x,!kind);
                rot(x,kind);
            }
            else
            {
                rot(y,kind);
                rot(x,kind);
            }
        }
    }
    push_up(x);
    if(goal==0)root=x;
}
void buildtree(int &x,int l,int r,int father)
{
    if(l>r)return ;
    int mid=(l+r)/2;
    newnode(x,mid,father);
    buildtree(ch[x][0],l,mid-1,x);
    buildtree(ch[x][1],mid+1,r,x);
    push_up(x);
}
int get_kth(int x,int k)
{
    push_down(x);
    int p=size[ch[x][0]];
    if(p+1==k)return x;
    else if(k<=p)return get_kth(ch[x][0],k);
    else get_kth(ch[x][1],k-p-1);
}
int get_min(int r){
    push_down(r);
    while(ch[r][0]){
        r=ch[r][0];
        push_down(r);
    }
    return r;
}
int get_max(int r){
    push_down(r);
    while(ch[r][1]){
        r=ch[r][1];
        push_down(r);
    }
    return r;
}
void cut(int a,int b,int c)
{
    int x=get_kth(root,a);
    int y=get_kth(root,b+2);
    splay(x,0);
    splay(y,root);
    int t=root10;
    root10=0;
    push_up(root1);
    push_up(root);
    int z=get_kth(root,c+1);
    splay(z,0);
    int p=get_min(root1);
    splay(p,root);
    root10=t;
    pre[root10]=root1;
    push_up(root1);
    push_up(root);
}
void flip(int a,int b)
{
    int x=get_kth(root,a);
    int y=get_kth(root,b+2);
    splay(x,0);
    splay(y,root);
    rev[root10]^=1;
}
vector<int>vec;
void print(int x)
{
    if(x==0)return;
    push_down(x);
    print(ch[x][0]);
    if(key[x]!=-1)vec.push_back(key[x]);
    print(ch[x][1]);
}
int main()
{
    int m,a,b,c;
    char str[110];
    int i;
    while(scanf("%d%d",&n,&m)&&(n+1||m+1))
    {
        init();
        newnode(root,-1,0);
        newnode(ch[root][1],-1,root);
        size[root]=2;
        buildtree(root10,1,n,root1);
        push_up(root1);
        push_up(root);
        for(i=1;i<=m;i++)
        {
            scanf("%s",str);
            if(str[0]==‘C‘)
            {
                scanf("%d%d%d",&a,&b,&c);
                cut(a,b,c);
            }
            else
            {
                scanf("%d%d",&a,&b);
                flip(a,b);
            }
        }
        vec.clear();
        print(root);
        for(i=0;i<vec.size();i++)
        {
            cout<<vec[i];
            if(i!=vec.size()-1)cout<<" ";
            else cout<<endl;
        }
    }
    return 0;
}

Ubuntu 14.04 设置Android开发环境,码迷,mamicode.com

时间: 2024-12-24 11:05:29

Ubuntu 14.04 设置Android开发环境的相关文章

Ubuntu 14.04下java开发环境的搭建--3--Tomcat及MySQL的安装

前面两篇文章,已经说明了JDK和Eclipse 的安装方法,下面简单说一下,Tomcat及MySQL的安装方法. Tomcat的安装. 在合适的地方解压apache-tomcat-6.0.39.tar.gz cd /opt/DevelopTools sudo mkdir server cd server sudo cp /home/home/下载/apache-tomcat-6.0.39.tar.gz /opt/DevelopTools/server sudo tar -zxvf apache-

ubuntu 14.04搭建android编译环境

按照我的文章:http://blog.csdn.net/zangcf/article/details/23566999在ubuntu 14.04上搭建android编译环境,编译过程会出以下两个错误: 1,Can't locateSwitch.pm in @INC (you may need to install the Switch module) (@INC contains:/etc/perl /usr/local/lib/perl/5.18.2 /usr/local/share/perl

Ubuntu 16.04 搭建Android开发环境

1.Installing Java sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer After that   sudo apt-get install oracle-java8-set-default 2.Installing Android Studio    (1) Download Android Studio from

Ubuntu 14.04下java开发环境的搭建--1--JDK的安装

说明:以下内容均是本人个人经验,接触ubuntu系统是从10.04开始,转眼转眼之间已经四年了,经常浏览各种相关论坛,发现从我刚开始基础到现在,论坛上还有很多人在问关于JAVA环境配置的相关问题.所以我把我的个人经验总结成下文,仅供新手参考,老鸟绕行! 下面开始. 首先java开发环境包括的一些基本内容: 1.jdk 安装 ----jdk-6u45-linux-x64.bin 2.eclipse 安装 ----eclipse-jee-kepler-SR2-linux-gtk-x86_64.tar

Ubuntu 14.04 安装LAMP开发环境

最近开始学习PHP开发,因此首先了解了以下如何在Ubuntu下准备开发环境,期间查阅了不少文章,也遇到了不少问题,特记录如下,希望对其他开发人员能够有所帮助: 1. 安装基础包 http://howtoubuntu.org/how-to-install-lamp-on-ubuntu 参照以上步骤就行. 2. 将apache2的localhost默认路径指向你需要的开发路径 默认路径在/var/www/html下,相信大多数开发人员都不会直接将该目录下进行开发,通过以下步骤改变该默认路径: 1)

ubuntu 14.04 配置JavaWeb开发环境

本人初学java web,看到网上的资料层次不齐,故总结一下经验供大家参考 1.首先安装jdk,通常可以从官网上下载安装包安装,也可以直接使用命令安装: (1)到oracle官网上下载相应版本的jdk,网址为:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html (2)将下载好的包解压到usr/lib/jvm,解压命令为tar -zxvf jdk-8u92-linux-x64.tar

Ubuntu 14.04下java开发环境的搭建--2--Eclipse的安装

前面说了JDK的安装,http://www.cnblogs.com/bcsflilong/p/4196536.html 下面我们来安装Eclipse! 安装Eclipse 的前提是,你的JDK已经安装成功 好了 开始安装. 首先在合适的地方解压eclipse-jee-kepler-SR2-linux-gtk-x86_64.tar.gz cd /opt/DevelopTools/ide/ sudo cp /home/home/下载/eclipse-jee-kepler-SR2-linux-gtk-

安装64位ubuntu 14.04-搭建android开发环境

                          end

ubuntu+idea intellij配置android开发环境

最近对移动开发产生兴趣,决定在未来几年内利用空余时间开发一些app或游戏什么的,鉴于ios开发成本较高,且自身对java相对熟悉,因此选择了学习android.都说android市场不很很好,收益较难,但是仍觉得只要功夫深,产品好,总会有人用. 不扯了,去网上搜了一下都是大部分android开发都是基于windows+eclipse,但是自己工作这段时间都是使用的linux+idea,而且用着特别舒服,因此决定依旧使用ubuntu+idea,不说废话了,配置过程如下: 1. 自己本职就是做jav