-
-
2有点惆怅
-
5
-
4
-
4
-
0
-
0
-
0
-
1@JensenFairwood 可能最近干别的事比较多
-
7a e i o u y 六个元音 b c d f g h j k l m n p q r s t v w x y z 去掉一些不必要的辅音 b d f g h k l m n p s t v z 如果我把送气辅音用+h的双字母来表示,就会 b d f g h l m n s v z k=gh p=bh t=dh 但这样不美观 换一种表达方式就可以得到 f h k l m n p s t v z 这样有点类似汉语了,用p和ph对立 我们也可以像德语那样,ss表示[s],s和元音在一块的时候表示[z] f用vh代替,这里规律和上面的bdg不同 h k l m n p s t v 所以字母表为 a e h i k l m n o p s t u v y
-
0@卡特尔 @辛迪加 @康采恩 @托拉斯
-
0Anarchism Vanguard Socialism Authoritarian Socialism Social Democracy Social Liberalism Social Conservatism Authoritarian Democracy Despotism Fascism National Socialism
-
0package com.Aperture.java; import java.math.BigInteger; import java.util.Scanner; public class SystemTest { public static void main(String[] args) { Scanner sc1=new Scanner(System.in); Scanner sc2=new Scanner(System.in); int n=sc1.nextInt(); for (int i = 0; i < n; i++) { String s1=sc2.nextLine(); String[] arr=s1.split(" "); BigInteger b1= new BigInteger(arr[0]); BigInteger b2= new BigInteger(arr[1]); System.out.println(b1.add(b2)); } } }
-
1伟大的半条命16吧啊! 我爱你
-
0
-
1www是一个 大规模关系式的信息储藏所 分布式的超媒体系统 超文本系统的扩充 可以用链接的方式,从站点访问另一个站点
-
2//快速排序(递归版) void QSort(int* a,int left,int right) { int tmp = a[left]; int p = left; int i = left,j = right; while(i<=j) { //升序 { while(a[j]>=tmp && j>=p) j--; if(j>=p) { a[p] = a[j]; //比划分元小的交换到左边 p = j; } while(a[i]<=tmp && i<=p) i++; if(i<=p) { a[p] = a[i]; //比划分元大的交换到右边 p = i; } } //降序 { while(a[j]<=tmp && j>=p) j--; if(j>=p) { a[p] = a[j]; //比划分元大的交换到左边 p = j; } while(a[i]>=tmp && i<=p) i++; if(i<=p) { a[p] = a[i]; //比划分
-
2
-
4我真想全部删除
-
3
-
1康康
-
1class Node(): def __init__(self,adr,data,next): self.adr=adr self.data=data self.next=next lst=[] newlist=[] headadr,nodenum,k=input().split()#头结点地址,节点个数,要转的k for i in range(int(nodenum)): a,d,n=input().split() p=Node(a,d,n) lst.append(p) headnext=0 for i in range(len(lst)): if headadr==lst[i].adr: headnext=lst[i].next newlist.append(lst[i]) lst.pop(i) break while len(lst)!=0 and headnext!=-1: j=0 for j in range(len(lst)): if lst[j].adr==headnext: headnext=lst[j].next newlist.append(lst[j]) lst.pop(j) break print('____') for i in range(len(newlist)): print(n
-
0
-
2先输入str字符串,再根据空格得到数字字符列表n.split().然后将列表元素转为数字存到新的列表list中
-
0
-
0Es geht durch die Welt ein Geflüster. Arbeiter, du hörst es nicht? Das sind die Stimmen der Kriegsminister. Arbeiter, du hörst es nicht? Es flüstern die Kohle-und Stahlproduzenten! Es flüstert die chemische Kriegsproduktion! Es flüstert von allen Kontinenten: Mobilmachung gegen die Sowjetunion! Arbeiter! Bauern! Nehmt die Gewehre! Nehmt die Gewehre zur Hand! Zerschlagt die faschistischen Räuberheere! Setzt alle Herzen in Brand! Pflanzt eure roten Banner der Arbeit auf jeden Rampe, auf jede Fabrik! Dann steigt aus den Trümmern der alten Gesellschaft Die sozialistische Weltrepublik! Dann
-
0
-
1#include <iostream> #include <stack> #include <string> using namespace std; bool Pair(char a, char b) { if (a == '(' && b == ')') return true; else if (a == '[' && b == ']') return true; else if (a == '{' && b == '}') return true; else if (a == '<' && b == '>') return true; else return false; } int main() { string s,part,res; stack<int>stk; while (part != ".") { cin >> part; s += part; } for (int i = 0; i < s.length(); i++) { if (s[i] == '(' |
-
0#include <iostream> using namespace std; typedef struct LNode { int data; struct LNode *next; }LNode,*Linklist; Linklist Create() { Linklist head = (Linklist)malloc(sizeof(struct LNode)); head->data = 0; head->next = NULL; return head; } Linklist Insert(Linklist& L) { int x; cout << "输入想要插入的数据,9999结束输入" << endl; L = (Linklist)malloc(sizeof(LNode)); LNode* s, * r = L; cin >> x; while (x != 9999) { s = (Linklist)malloc(sizeof(LNode)); s->data = x; r->next = s; r = s; cin >> x; } r->next = NULL; return L; } voi
-
0
-
1#include <iostream> using namespace std; typedef struct PolyNode* Polynomial; struct PolyNode{ int coef;//系数 int expon;//指数 Polynomial link; }; void Attach(int c, int e, Polynomial* pRear) { Polynomial P = (Polynomial)malloc(sizeof(struct PolyNode)); P->coef = c; P->expon = e; P->link = NULL; (*pRear)->link = P; *pRear = P; } Polynomial Read() { int n;//几个数 int c, e;//系数和指数 Polynomial P, Rear, t; cin >> n; P = (Polynomial)malloc(sizeof(struct PolyNode)); P->link = NULL; Rear = P; while (n--) { cin >> c >> e; Attach(c, e, &Rear)
-
1#include "stdafx.h" #include<iostream> #include<string> #include "cstdio" using namespace std; void get_next(string s, int next[]) { int i = 1, j = 0; next[1] = 0; while (i < s.length()) { if (j == 0 || s[i] == s[j]) { i++; j++; next[i] = j; } else j = next[j]; } } void KMP(string s, string t, int next[]) { int i = 1, j = 1; while (i < s.length() && j < t.length()) { if (j == 0 || s[i] == t[j]) { i++; j++; } else j = next[j]; } if (j >= t.length()) { cout << i - t.length() << endl; } else { cout << "NotFound" <&
-
0
-
0
-
0
-
0