去重

http://blog.csdn.net/zitong_ccnu/article/details/11820511  

http://blog.sina.com.cn/s/blog_69146f5101016tv6.html

http://blog.csdn.net/ww1473345713/article/details/50987316

http://blog.csdn.net/lanjiangzhou/article/details/8993282

http://www.cnblogs.com/fish7/p/4391035.html




http://www.xuebuyuan.com/1394443.html 去重 模板

#include <iostream>
#include <string>
using namespace std;


int main()
{
string b;
getline(cin, b);
int count = 0;
for (int i = 0; i <= 127; i++)
if (b.find(i) != string::npos)//如果没有找到返回npos
count++;
cout << count;
}




/*编写一个函数,计算字符串中含有的不同字符的个数。字符在ACSII码范围内(0~127)。不在范围内的不作统计*/
//输入描述:输入N个字符,字符在ACSII码范围内(0~127)
//输出描述:输出字符的个数 #include<iostream>


using namespace std;


int main(){
char ch;
int arr[128] = { 0 };
int count = 0;
while (cin >> ch){
if (ch >= 0 && ch <= 127){
arr[ch]++;
}
}
for (int i = 0; i<128; i++){
if (arr[i]>0)
count++;
}
cout << count << endl;
return 0;
}


/*C++
输入字符,ascii值在[0,127]时插入集合set中,输出set中的元素个数。*/
#include<iostream>
#include<set>
using namespace std;
int main()
{
char c;
set<char> s;//set不允许添加重复的元素
while (cin >> c){
if (c >= 0 && c <= 127){
s.insert(c);
}
}
cout << s.size() << endl;
}




 去重函数:



//逆序去重
#include<iostream>
#include<string>
using namespace std;
int main()
{
string a;
int i, j,n=0;
cin >> a;
int len=a.length();






cout << a[len - 1];


for (int i = len - 2; i >= 0; i--)
{
int n = 0;
for (int j = i + 1; j<len; j++)


if (a[i]!= a[j])
{
n++;
if (n == (len - i - 1))
cout<<a[i];
}


}




/*for (i = 0; i < len; i++)
{    
for (j = 0;  j<i; j++)
{
if (a[i] != a[j])
{
n++;
if (n==i)
{
cout << a[i];
a[++k] = a[i];
n = 0;


}



}
}




}*/
//for (i = 0; i < k; i++)
//{
// cout << a[i];
//}
return 0;
}






//正序去重
#include<iostream>
#include<string>
using namespace std;
//int n;
int main()
{
string a;
int i, j, n = 0;
cin >> a;
int len = a.length();
cout << a[0];


for (i = 1; i < len; i++)//直接从1开始
{
n = 0;
for (j = 0;  j<i; j++)

if (a[i] != a[j])
{
n++;
if (n==i)
{
cout << a[i];
//n = 0;
int p = n;
}






}





}
//for (i = 0; i < k; i++)
//{
// cout << a[i];
//}
return 0;
}


正序去重2:

//去重 数组
#include<iostream>
#include<string.h>
using namespace std;
int main()
{
int a[] = {1,2,3,3,3,4,4,4,4,5,6,7,6,8,6,9,1,11,10};//数组没有/0
int j=0;
//cout << sizeof(a) << endl;
cout << a[0];


for (int i = 1; i < sizeof(a)/sizeof(a[0]); i++)
{
j = 0;
for (int k = 0; k < i; k++)
if (a[k] == a[i])
j++;
if (j == 0)
cout << a[i]<<" ";


}


return 0;
}

//正序去重存储另一个空间

//去重 数组
#include<iostream>
#include<string.h>
using namespace std;
int main()
{
int a[] = {1,2,3,3,3,4,4,4,4,5,6,7,6,8,6,9,1,11,10};//数组没有/0
int b[sizeof(a) / sizeof(a[0])];
int j=0,t=0;
//cout << sizeof(a) << endl;
//cout << a[0]<<" ";
b[t++] = a[0];

for (int i = 1; i < sizeof(a)/sizeof(a[0]); i++)
{
j = 0;
for (int k = 0; k < i; k++)
if (a[k] == a[i])
j++;
if (j == 0)
//cout << a[i]<<" ";
b[t++] = a[i];


}
for (int i = 0; i < t; i++)
{
cout << b[i] << " ";
}
cout << endl;
return 0;
}


vector去重函数unique

/*
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) :
        val(x), next(NULL) {
    }
};
*/
class Solution {
public:
    ListNode* deleteDuplication(ListNode* pHead)
    {
      vector<int> ps;
        if(pHead==NULL)
            return NULL;//必须加
        while(pHead!=NULL)
            {
            ps.push_back(pHead->val);
            pHead= pHead->next;
        }
          unique(ps.begin(),ps.end()); 
          ListNode* pt=new ListNode(ps[0]) ;
           ListNode*  p=pt;
         ListNode*  node=NULL;
            for(int i=1;i<ps.size();i++)
              {
               // p->next=node;
                
                //p->next.val=ps[i];
               // p= p->next;
               node = new ListNode(ps[i]);
            //   *node=sum % 10;
        
           p->next = node;
           // p =node;
           p= p->next ;
         
        
                
          }
           
        return  pt;
    }
  
};

//正向去重真的输入数组中

#include<iostream>
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
using namespace std;
int* qc(int* a,int n)
{
int b[500];
int j = 0, t = 0;
b[0] = a[0];


for (int i = 1; i <= n; i++)
{
j = 0;
for (int k = 0; k < i; k++)
if (a[k] == a[i])
j++;
if (j == 0)
b[++t] = a[i];
}
int* c = (int*)malloc(t*sizeof(int));
for (int i = 0; i < t; i++)
{
c[i] = b[i];
}
return c;
}
int main()
{
int a[] = { 99,23,99,78,87,78, 10,13,10,19 };//数组没有/0
int * c;
c = qc(a, sizeof(a) / sizeof(a[0]));
//
//cout << sizeMalloc(c);
for (int i = 0; i < *(c - 4) / sizeof(c); i++)
//for (int i = 0; i < sizeof(a) / sizeof(a[0]); i++)
{
cout << c[i] << " ";
}
cout << endl;
return 0;
}


测试用例:
{1,2,3,3,4,4,5}

对应输出应该为:

{1,2,5}

你的输出为:

{1,2,3,4,5,4,5}//没彻底删除


//java正向去重和彻底删除

 package lianbiao;

import java.util.Scanner;

public class Main4 {

public static void main(String[] args)
{
Scanner sc=new Scanner( System.in);
while(sc.hasNext())
{
int n=sc.nextInt();
int[] a=new int[n];
for(int i=0;i<n;i++)
{
a[i]=sc.nextInt(); 
}
/*System.out.print(a[0]);

for(int i=1;i<n;i++) //正向去重
{
    int s=0;
for(int j=0;j<i;j++)
{
if(a[i]!=a[j])
s++;
}
if(s==i)
System.out.print(a[i]);*/  

int[] b=new int[n];
int value=0;
for(int i=0;i<n;i++)
{
    int s=0;
for(int j=0;j<n;j++)
{
if(a[i]==a[j])
s++;
}
if(s==1)//彻底删除
{
System.out.print(a[i]);
b[value]=a[i];
value++;
}
}

System.out.println();
for(int i=0;i<value;i++)
{
System.out.print(b[i]);
}


}
}
}





/*
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) :
        val(x), next(NULL) {
    }
};
*/
class Solution {
public:
    ListNode* deleteDuplication(ListNode* pHead)
    {
      vector<int> ps;
        if(pHead==NULL)
            return NULL;//必须加 不然栈溢出
        while(pHead!=NULL)
            {
              //if(pHead->val==pHead->next->val)
              // {
              //  pHead=pHead->next->next;
             //   continue;
         //   }
            
            ps.push_back(pHead->val);
            pHead= pHead->next;
          
        }
        /*
           for(int i=0;i<ps.size();i++)
               {
                 if(ps[i]==ps[i+1])
                     t=p[i];
           }
           */
             
         // unique(ps.begin(),ps.end()); 
          ListNode* pt=new ListNode(ps[0]) ;
           ListNode*  p=pt;
         ListNode*  node=NULL;
        vector<int>::iterator iter = unique(ps.begin(),ps.end());
         // ps.erase(iter,ps.end());
         ps.erase(iter,ps.end());
            for(int i=1;i<ps.size();i++)
              {
               // p->next=node;
                
                //p->next.val=ps[i];
               // p= p->next;
               node = new ListNode(ps[i]);
            //   *node=sum % 10;
        
           p->next = node;
           // p =node;
           p= p->next ;
         
        
                
          }
           
        return  pt;
    }
  
};


//去重和擦除实现真正的去重

您的代码已保存
答案错误:您提交的程序没有通过所有的测试用例

case通过率为0.00%
测试用例:
{1,2,3,3,4,4,5}

对应输出应该为:

{1,2,5}

你的输出为:

{1,2,3,4,5}
http://blog.sina.com.cn/s/blog_69146f5101016tv6.html  排序去重 unique vector

http://blog.csdn.net/wangyadong/article/details/4239209

http://blog.csdn.net/a601025382s/article/details/8277609







题目:

题目描述

编写一个函数,计算字符串中含有的不同字符的个数。字符在ACSII码范围内(0~127)。不在范围内的不作统计。


输入描述:

输入N个字符,字符在ACSII码范围内(0~127)。



输出描述:

输出字符的个数。


输入例子:
abc

输出例子:
3
 
 
 
 
 
 
#include<iostream>
#include<string>
using namespace std;
    int main()
   {
        int n=0;
        string a;
        cin>>a;
        int m=a.size();
        cout<<a[m-1];
        for(int i=m-2;i>=0;i--)
            {n=0;
            for(int j=i+1;j<m;j++)           
//for(int j=m-1;j>i;j--) //也可以
                if (a[i]!= a[j])                { n++;                if(n==m-1-i)                    cout<<a[i];             }                       }    }

题目描述

输入一个int型整数,按照从右向左的阅读顺序,返回一个不含重复数字的新的整数。

输入描述:

输入一个int型整数



输出描述:

按照从右向左的阅读顺序,返回一个不含重复数字的新的整数

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值