-
-
0经核实吧主坏坏已习惯 未通过普通吧主考核。违反《百度贴吧吧主制度》第八章规定http://tieba.baidu.com/tb/system.html#cnt08 ,无法在建设 坏坏已习惯吧 内容上、言论导向上发挥应有的模范带头作用。故撤销其吧主管理权限。百度贴吧管理组
-
411
-
3吧里有比我等级高的么
-
8暖贴!
-
0http://tieba.baidu.com/p/3761305299
-
0http://tieba.baidu.com/p/2394979694
-
7今天上机
-
2
-
0
-
0
-
0
-
0
-
0
-
0
-
0
-
0
-
0
-
0
-
1OMG:上中野辅 IG: 小孩 心疼小孩不会躺赢
-
1http://pan.baidu.com/s/1t7l7o
-
9
-
0
-
0
-
0
-
1吧里的人都苏格兰了?
-
0
-
0
-
1
-
1
-
0不服sala
-
5#include "stdio.h" #include "string.h" #include "malloc.h" #define NULL 0 typedef struct BiTNode{ //定义数据结构 char data; struct BiTNode *lchild,*rchild; }BiTNode,*BiTree; BiTree Create(BiTree T) //建立二叉树 { char ch; ch=getchar(); if(ch=='#') T=NULL; else { if(!(T=(BiTNode *)malloc(sizeof(BiTNode)))) printf("Error!"); T->data=ch; T->lchild=Create(T->lchild); T->rchild=Create(T->rchild); } return T; } void Preorder(BiTree T) { //先序遍历二叉树 if(T) { printf("%c",T->data); Preorder(T->lchild);
-
1100.
-
0#include <stdio.h> #include <string.h> int main( ){ int i, n, l; char data[ 100 ]; while ( scanf("%d", &n) != EOF && n ) { while ( n-- ) { scanf("%s", data); l = strlen( data ); for ( i = 0; i < l / 2; i++ ) if ( data[ i ] != data[ l - i - 1 ] ) { printf("No\n"); break; } if ( i == l / 2 ) printf("Yes\n"); } } return 0; }
-
17#include<stdio.h> #include <malloc.h> #define LIST_INIT_SIZE 100 typedef int ElemType; typedef struct { ElemType list[LIST_INIT_SIZE]; int size; } SeqList; void ListInitiate(SeqList *L) { L->size=0; } int ListLength(SeqList L) { return L.size; } int ListInsert(SeqList *L,int i,ElemType x) { int j; if(L->size>=LIST_INIT_SIZE) { printf("顺序表已满无法插入!\n"); return 0; } else if(i<0||i>L->size) { printf("i is error"); return 0; } else { for(j=L->size; j>i-1; j--)L->list[j]=L->list[j-1]; L->list[i-1]=x; L->size++; retu
-
2#include <stdio.h> #include <malloc.h> #include <stdlib.h> #define true 1 #define false 0 typedef struct Node { int data; struct Node *pNext; }NODE, *PNODE; typedef struct Stack { PNODE pTop; PNODE pBottom; }STACK, *PSTACK; void init(PSTACK pS); void push(PSTACK pS, int val); void traverse(PSTACK pS); int pop(PSTACK pS , int *val); void clear(PSTACK pS); int empty(PSTACK pS); int main(void) { STACK S ; int val; int i; init(&S); push(&S,1); push(&S,2); push(&S,3); push(&S,4); push(&S,5); push(&S,6); traverse(&S); if(pop(&S ,&val)) { prin
-
1不服sala
-
9
-
4#include<stdio.h> #include <malloc.h> #define LIST_INIT_SIZE 100 typedef int ElemType; //初始化线性表 typedef struct{ ElemType l
-
2
-
0m1=0; m2=0; n=1; while(1) m1=m1+1/(n*n); n=n+1; if(n>=10000) break; end end n=10000; while(1) m2=m2+1/(n*n); n=n-1; if(n<=0) break; en