using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Text;
using System.Collections.Generic;
public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            SortArr();
        }

}
    #region
    //取反
    private string Revese(string str)
    {
        StringBuilder SB = new StringBuilder();
        for (int i = str.Length - 1; i >= 0; i--)
        {
            SB.Append(str[i]);

}
        return SB.ToString();
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        string num = Revese(this.TextBox1.Text.ToString());
        this.TextBox2.Text = num;
    }
    #endregion
    #region
    //1。1。2。3。5。8。13。21。34。55 用递归的方法算出第30数是多少?
    //public int function(int n)
    //{
    //    if (n == 1)
    //    {
    //        return 1;
    //    }
    //    else if (n == 2)
    //    {
    //        return 1;
    //    }
    //    else
    //    {
    //        return function(n - 2) + function(n - 1);
    //    }
    //}
    /*1*2*3*4...*/
    public int function(int n)
    {
        if (n == 1)
        {
            return 1;
        }
        else
        {
            return n * function(n - 1);
        }
    }
    protected void Button2_Click(object sender, EventArgs e)
    {
        int num = function(int.Parse(this.TextBox3.Text));
        this.TextBox4.Text = num.ToString();
    }
    #endregion
    #region
    //冒泡排序
    public void SortArr()
    {
        int i;
        int j;
        int[] arr = { 79, 56, 90, 4, 32, 27, 16, 88, 35 };
        //外层循环控制轮数
        for (i = 0; i < arr.Length - 1; i++)
        {
            //内层循环控制每轮比较的次数
            for (j = 0; j < arr.Length - 1 - i; j++)
            {
                //条件判断
                if (arr[j] > arr[j + 1])
                {
                    int temp = arr[j];
                    arr[j] = arr[j + 1];
                    arr[j + 1] = temp;
                }

}
        }
        for (i = 0; i < 9; i++)
        {
            Response.Write(arr[i] + "\n");
        }

//九九乘法表
        //int i, j;
        //for (i = 1; i <= 9; i++)
        //{
        //    for (j = 1; j <= i; j++)
        //    {
        //        Response.Write(j+"*"+i+"="+i*j+"\n");
        //    }
        //}
        /*1-2+3-4...+m*/
        //string strsql = "";
        //for (int i = 1; i <= 100000; i++)
        //{
        //    if (i == 1)
        //    {
        //        strsql += i;
        //    }
        //    else
        //    {
        //        if (i % 2 == 0)
        //        {
        //            strsql += "-" + i;
        //        }
        //        else
        //        {
        //            strsql += "+" + i;
        //        }
        //    }
        //}
        //Response.Write(strsql);
        /*1+3+5+7*/
        //string strsql = "";
        //for (int i = 0; i < 100; i++)
        //{
        //    if (i == 1)
        //    {
        //        strsql += i;
        //    }
        //    else
        //    {
        //        if (i % 2 != 0)
        //        {
        //            strsql += "+" + i;
        //        }
        //    }
        //}
        //Response.Write(strsql);

}
    #endregion
    /*算字母总和*/
    protected void Button3_Click(object sender, EventArgs e)
    {
      Response.Write(Show(this.TextBox5.Text));
    }
  public static int Show(string strInput)
   {
        //strInput = strInput.ToUpper();
        ////A=1,B=2,z=26,那么what=52
        //string[] strWords = new string[] { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" };
        //int s = 0;
        //for (int i = 0; i < strInput.Length; i++)
        //{
        //    string str = strInput.Substring(i, 1);
        //    for (int j = 0; j < strWords.Length; j++)
        //    {
        //        if (str == strWords[j])
        //        {
        //            s += j + 1;
        //            break;
        //        }
        //    }
        //}
        //return s;
       strInput = strInput.ToUpper();
       string[] strWords = new string[] { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" };
       int s = 0;
       for (int i = 0; i < strInput.Length; i++)
       {
           string str = strInput.Substring(i,1);
           for (int j = 0; j < strWords.Length; j++)
           {
               if (str == strWords[j])
               {
                   s += j + 1;
                   break;
               }
           }
       }
       return s;
   }
}

net字符串倒置和冒泡排序的更多相关文章

  1. 【算法和数据结构】_11_小算法_itoa、ftoa及字符串倒置

    [1]main.c /**************************************************** * * 把整数按照进制数转换为相应进制的字符串 *(要考虑符号),比如 ...

  2. C#字符串倒置函数的代码

    把内容过程比较常用的内容珍藏起来,下边内容内容是关于C#字符串倒置函数的内容. public static string Reverse(string ReverseString) { String ...

  3. C字符串倒置-中部对称

    问题如图 Code #include<stdio.h> #include<string.h> #define MAX_LENGTH 10//最大字符串长度 void inver ...

  4. 笔试算法题(01):字符串倒置 & 八皇后问题

    出题:将字符串“ABCD1234efgh”进行前后对调: 分析: 常见的考查指针使用的案例,知道字符串长度之后,依次交换位置i以及位置(length-1-i)上的内容,直到重叠: 注意不能直接修改指针 ...

  5. C016:字符串倒置

    代码: #include "stdafx.h" #include <string.h> int _tmain(int argc, _TCHAR* argv[]) { c ...

  6. Leetcode 125 Valid Palindrome 字符串处理

    题意:判断字符串是否是回文字符串 先将所有的字母和数字字符保留,并将大写字母转化成小写字母,然后将字符串倒置,比较前后两个字符串是否相同. 该题最好的解法可以模仿 Leetcode 345 Rever ...

  7. java 字符串笔记

    java字符串当中有三个关于字符串对象的类. String 首先谈论下他们各自的含义: 1.String含义为引用数据类型,是字符串常量.是不可变的对象,(显然线程安全)在每次对string类型进行改 ...

  8. 51nod 1092(lcs)回文字符串

    题目:给你一个字符串,问添加最少的字符数目,使之成为回文串 解题思路:将字符串倒置,求出字符串和倒置串的最长公共子序列,字符串的长度减去lcs的长度就是了.. 代码:#include<iostr ...

  9. 【Python初级】由判定回文数想到的,关于深浅复制,以及字符串反转的问题

    尝试用Python实现可以说是一个很经典的问题,判断回文数. 让我们再来看看回文数是怎么定义的: 回数是指从左向右读和从右向左读都是一样的数,例如1,121,909,666等 解决这个问题的思路,可以 ...

随机推荐

  1. 6.DHCP配置故障转移(Windows2012)

    准备: 子网对应核心交换机网关配置多个中继 interface Vlan64 ip address 10.10.64.1 255.255.248.0 ip helper-address 10.10.1 ...

  2. xxl-job之实现流程任务编排思路

    背景   某一天一如既往的上班"旅途"中,我的领导在开早会的时候,说我最近没啥事,于是让我研究一下Activiti工作流引擎与Drools规则引擎,当时也不知道后边具体要做什么,管 ...

  3. 设计模式(十七)——迭代器模式(ArrayList 集合应用源码分析)

    1 看一个具体的需求 编写程序展示一个学校院系结构:需求是这样,要在一个页面中展示出学校的院系组成,一个学校有多个学院, 一个学院有多个系.如图: 2 传统的设计方案(类图) 3 传统的方式的问题分析 ...

  4. Python Line Messaging Api

    Line Messaging line 是国外一个很火的实时通信软件,类似与WX,由于公司业务需求,需要基于line开发一个聊天平台,下面主要介绍关于line messaging api 的使用. 官 ...

  5. 2020牛客暑期多校训练营(第四场) C - Count New String (字符串,广义后缀自动机,序列自动机)

    Count New String 题意: 定义字符串函数 \(f(S,x,y)(1\le x\le y\le n)\),返回一个长度为y-x+1的字符串,第 i 位是 \(max_{i=x...x+k ...

  6. hdu 6268 Master of Subgraph(点分治+bitset)

    You are given a tree with n nodes. The weight of the i-th node is wi. Given a positive integer m, no ...

  7. Educational Codeforces Round 17

    Educational Codeforces Round 17 A. k-th divisor 水题,把所有因子找出来排序然后找第\(k\)大 view code //#pragma GCC opti ...

  8. Codeforces Round #655 (Div. 2) A. Omkar and Completion

    题目链接:https://codeforces.com/contest/1372/problem/A 题意 构造一个大小为 $n$ 的数组 $a$,要求满足 $1 \le a_i \le n$,且不存 ...

  9. 【noi 2.6_666】放苹果 & 【noi 2.6_8467】鸣人的影分身(DP)

    这题其实在2.6前面的专题也有出现过,我还以为我有写,结果发现,并没有.于是就现在写了.这2题其实重复了......我就按放苹果的来说. 题意:把N个苹果放在M个盘子里,允许有的盘子空着不放,问共有多 ...

  10. Manacher算法 & Palindrome

    马拉车用于解决最长回文子串问题,重点是子串,而不是子序列,时间复杂度为O(n). 解释一下变量的意义: Len[i]数组去存第i个位置到mx位置的长度 id记录上一次操作的位置(这个操作可以看模板) ...