LeetCode题库相关练习
作者:互联网
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
#region 2 两数相加
//class Node<T>
//{
// private int p;
// public int P
// {
// get { return p; }
// set { p = value; }
// }
// private Node<int> node;
// public Node<int> Node1
// {
// get { return node; }
// set { node = value; }
// }
// public Node(int p, Node<int> node)
// {
// // TODO: Complete member initialization
// this.p = p;
// this.node = node;
// }
// public Node(int p)
// {
// // TODO: Complete member initialization
// this.p = p;
// this.node = null;
// }
// public void test(){
// Node<int> number1 = new Node<int>(9, new Node<int>(6, new Node<int>(3, new Node<int>(3))));
// Node<int> number2 = new Node<int>(5, new Node<int>(6, new Node<int>(4)));
// int x = 0;
// int z = 1;
// while (number1 != null || number2 != null)
// {
// if (number1 != null) {
// x += (number1.P * z);
// number1 = number1.Node1;
// }
// if (number2 != null)
// {
// x += (number2.P * z);
// number2 = number2.Node1;
// }
// z *= 10;
// }
// Console.WriteLine(x);
// Console.ReadKey();
// }
//}
#endregion
#region 3 无重复字符的最长子串
//public static bool judge(string s, int start, int end)
// {
// for (int i = start; i < end; i++) {
// if (s[end] == s[i]) {
// return false;
// }
// }
// return true;
// }
// static void Main(string[] args)
// {
// string s = Console.ReadLine();
// int length = 0;
// int startIndex = 0;
// int endIndex = 0;
// for (int i = 0; i < s.Length; i++) {
// startIndex=i;
// if(endIndex<startIndex){
// endIndex = startIndex+1;
// }
// for (int j = endIndex; j < s.Length; j++) {
// endIndex = j;
// Console.WriteLine("start:"+startIndex.ToString()+",end:"+endIndex.ToString());
// if (!judge(s, startIndex, endIndex))
// {
// break;
// }
// }
// length = (length < (endIndex - startIndex)) ? (endIndex - startIndex) : length;
// }
// Console.WriteLine(length);
// Console.ReadKey();
// }
#endregion
class Program
{
}
}
标签:Node,endIndex,int,练习,System,startIndex,new,题库,LeetCode 来源: https://www.cnblogs.com/Kai-0228/p/14183550.html